diff options
Diffstat (limited to '')
-rw-r--r-- | .github/workflows/dotnet.yml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/dotnet.yml b/.github/workflows/dotnet.yml index b48095a..eb34285 100644 --- a/.github/workflows/dotnet.yml +++ b/.github/workflows/dotnet.yml @@ -16,7 +16,7 @@ on: jobs: build-and-test: - name: Build and Test (.NET) + name: Build and Test runs-on: ${{ matrix.os }} strategy: fail-fast: false @@ -34,7 +34,7 @@ jobs: run: dotnet test --no-restore publish-preview: - name: Publish Preview to GitHub Packages + name: Publish Preview NuGet to GitHub Packages needs: build-and-test if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/master' }} runs-on: ubuntu-latest @@ -60,7 +60,7 @@ jobs: run: dotnet nuget push src/bin/Release/*.symbols.nupkg publish-release: - name: Publish Release to NuGet + name: Publish Release NuGet to NuGet.org needs: build-and-test if: ${{ github.ref_type == 'tag' && startsWith(github.ref, 'refs/tags/') }} runs-on: ubuntu-latest |