Skip to content

Commit 19e4ab7

Browse files
committed
Rename the "test" job into "package"
1 parent 7e0457c commit 19e4ab7

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/continuous-integration.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ env:
77
ContinuousIntegrationBuild: true
88

99
jobs:
10-
test:
10+
package:
1111
strategy:
1212
matrix:
1313
os: [ macos-latest, ubuntu-latest, windows-latest ]
@@ -27,14 +27,14 @@ jobs:
2727
- run: dotnet pack --no-build --verbosity normal
2828
publish-release:
2929
runs-on: macos-latest
30-
needs: test
30+
needs: package
3131
if: startsWith(github.ref, 'refs/tags')
3232
name: Publish package on nuget.org
3333
steps:
3434
- run: dotnet nuget push "**/*.nupkg" --source https://api.nuget.org/v3/index.json --api-key "${{ secrets.NUGET_API_KEY }}"
3535
publish-prerelease:
3636
runs-on: macos-latest
37-
needs: test
37+
needs: package
3838
if: github.ref == 'refs/heads/deploy'
3939
name: Publish package on github.com
4040
steps:

0 commit comments

Comments
 (0)