diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index eb511af..b4c0414 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -13,9 +13,6 @@ jobs: - uses: actions/checkout@v2 - name: Setup .NET Core uses: actions/setup-dotnet@v3 - with: - dotnet-version: '6.0.x' - dotnet-quality: 'ga' - name: Build run: dotnet build -c Release "src/Hedgehog.Xunit" - name: Test @@ -26,7 +23,7 @@ jobs: path-to-lcov: tests/Hedgehog.Xunit.Tests/TestResults/coverage.info github-token: ${{ secrets.GITHUB_TOKEN }} - name: Publish NuGet - uses: brandedoutcast/publish-nuget@v2.5.5 + uses: alirezanet/publish-nuget@v3.1.0 with: PROJECT_FILE_PATH: "src/Hedgehog.Xunit/Hedgehog.Xunit.fsproj" PACKAGE_NAME: "Hedgehog.Xunit" diff --git a/.github/workflows/pull_request.yml b/.github/workflows/pull_request.yml index 280cf17..67ce2b7 100644 --- a/.github/workflows/pull_request.yml +++ b/.github/workflows/pull_request.yml @@ -13,9 +13,6 @@ jobs: - uses: actions/checkout@v2 - name: Setup .NET Core uses: actions/setup-dotnet@v3 - with: - dotnet-version: '6.0.x' - dotnet-quality: 'ga' - name: Build run: dotnet build -c Release "src/Hedgehog.Xunit" - name: Test diff --git a/global.json b/global.json new file mode 100644 index 0000000..454caa6 --- /dev/null +++ b/global.json @@ -0,0 +1,6 @@ +{ + "sdk": { + "rollForward": "feature", + "version": "6.0.411" + } +} \ No newline at end of file