We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9ebc838 commit d843ad4Copy full SHA for d843ad4
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: env.IS_PUSH_TAG
+ if: ${{ env.IS_PUSH_TAG == 'true' }}
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 .
+ run: dotnet pack ./src/SteamWebAPI2/SteamWebAPI2.csproj -c Release --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
0 commit comments