Skip to content

Only wait 3 seconds for csharpier to format, otherwise kill it and re… #300

Only wait 3 seconds for csharpier to format, otherwise kill it and re…

Only wait 3 seconds for csharpier to format, otherwise kill it and re… #300

Workflow file for this run

name: Publish Nuget
on:
push:
branches: [ main ]
jobs:
test:
runs-on: ubuntu-latest
name: test
steps:
- uses: actions/checkout@v2
- uses: actions/setup-dotnet@v1
with:
dotnet-version: |
7.0.304
6.0.300
- run: >
dotnet test Src/CSharpier.Tests/CSharpier.Tests.csproj
--configuration Release
--logger "GitHubActions;summary.includePassedTests=true;summary.includeSkippedTests=true"
--
RunConfiguration.CollectSourceInformation=true
publish-nuget:
runs-on: ubuntu-latest
name: publish nuget
needs: test
env:
VERSION_FILE_PATH: Nuget/Build.props
NUGET_KEY: ${{secrets.NUGET_API_KEY}}
steps:
- uses: actions/checkout@v2
- uses: actions/setup-dotnet@v1
with:
dotnet-version: |
7.0.304
6.0.300
- name: Publish CSharpier.Core library on version change
uses: alirezanet/[email protected]
with:
PROJECT_FILE_PATH: Src/CSharpier/CSharpier.csproj
TAG_FORMAT: "*"
- name: Publish CSharpie dotnet tool on version change
uses: alirezanet/[email protected]
with:
PROJECT_FILE_PATH: Src/CSharpier.Cli/CSharpier.Cli.csproj
TAG_FORMAT: "*"
- name: Publish CSharpier.MsBuild library on version change
uses: alirezanet/[email protected]
with:
PROJECT_FILE_PATH: Src/CSharpier.MsBuild/CSharpier.MsBuild.csproj
TAG_FORMAT: "*"