We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5918f62 commit 929fe24Copy full SHA for 929fe24
.github/workflows/master.yml
@@ -72,8 +72,8 @@ jobs:
72
73
- name: Push to feedz.io
74
run: dotnet nuget push **/*.nupkg -k ${{ secrets.FEEDZ_API_KEY }} -s https://f.feedz.io/forevolve/exception-mapper/nuget/index.json
75
- if: ${{ env.INPUT_DEPLOYTOFEEDZ == 'true' || github.event_name == 'pull_request' }}
+ if: ${{ github.event.inputs.deployToFeedz == 'true' || github.event_name == 'pull_request' }}
76
77
- name: Push to NuGet.org
78
run: dotnet nuget push **/*.nupkg -k ${{ secrets.NUGET_API_KEY }} -s https://api.nuget.org/v3/index.json
79
- if: ${{ env.INPUT_DEPLOYTONUGET == 'true' || github.event_name == 'push' }}
+ if: ${{ github.event.inputs.deployToNuGet == 'true' || github.event_name == 'push' }}
0 commit comments