From 411a96554a8787ef73064c078bb55821d51baba5 Mon Sep 17 00:00:00 2001 From: Matt Strapp Date: Wed, 7 Aug 2024 11:15:53 -0500 Subject: ci: Rename things better Signed-off-by: Matt Strapp --- .github/workflows/dotnet.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to '.github/workflows/dotnet.yml') 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 -- cgit v1.2.3