aboutsummaryrefslogtreecommitdiffstats
path: root/.github/workflows/dotnet.yml
diff options
context:
space:
mode:
authorMatt Strapp <matt@mattstrapp.net>2024-08-07 11:15:53 -0500
committerMatt Strapp <matt@mattstrapp.net>2024-08-07 11:15:53 -0500
commit411a96554a8787ef73064c078bb55821d51baba5 (patch)
tree1076a3493ea8e08f8fa9d1716367df1c5eac9556 /.github/workflows/dotnet.yml
parentdependabot: Add GHA groups (diff)
downloadlocusts-411a96554a8787ef73064c078bb55821d51baba5.tar
locusts-411a96554a8787ef73064c078bb55821d51baba5.tar.gz
locusts-411a96554a8787ef73064c078bb55821d51baba5.tar.bz2
locusts-411a96554a8787ef73064c078bb55821d51baba5.tar.lz
locusts-411a96554a8787ef73064c078bb55821d51baba5.tar.xz
locusts-411a96554a8787ef73064c078bb55821d51baba5.tar.zst
locusts-411a96554a8787ef73064c078bb55821d51baba5.zip
ci: Rename things better
Signed-off-by: Matt Strapp <matt@mattstrapp.net>
Diffstat (limited to '.github/workflows/dotnet.yml')
-rw-r--r--.github/workflows/dotnet.yml6
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