We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 059dd72 commit 9ebc838Copy full SHA for 9ebc838
1 file changed
.github/workflows/dotnet-build.yml
@@ -27,11 +27,11 @@ jobs:
27
- name: Build (Debug)
28
run: dotnet build ./src/SteamWebAPI2.sln --no-restore
29
- name: Build (Release)
30
- if: $IS_PUSH_TAG
+ if: env.IS_PUSH_TAG
31
run: dotnet build ./src/SteamWebAPI2.sln -c Release --no-restore
32
- name: Pack
33
34
run: dotnet pack ./src/SteamWebAPI2/SteamWebAPI2.csproj -c Release --no-build --output .
35
- name: Publish
36
37
- run: dotnet nuget push "*.nupkg" -k ${{ secrets.NUGET_API_KEY }} -s https://api.nuget.org/v3/index.json -n --skip-duplicate
+ run: dotnet nuget push "*.nupkg" -k ${{ secrets.NUGET_API_KEY }} -s https://api.nuget.org/v3/index.json -n --skip-duplicate
0 commit comments