We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 1b5a9af + 9287ec8 commit 306a67eCopy full SHA for 306a67e
1 file changed
.github/workflows/deploy.yml
@@ -25,14 +25,13 @@ jobs:
25
- name: GitVersion
26
id: gitversion
27
uses: gittools/actions/gitversion/execute@v0.9.7
28
- #with:
29
- # useConfigFile: true
30
- # additionalArguments: '/showConfig'
+ with:
+ useConfigFile: true
31
32
- name: Pack
33
run: dotnet pack -c Release --version-suffix ${{ steps.gitversion.outputs.nuGetVersion }}
34
35
- name: Publish
36
- if: github.event_name != 'pull_request' && (github.ref_name == 'master' || github.ref_name == 'develop')
+ if: github.event_name != 'pull_request' && (github.ref_name == 'master')
37
run: |
38
dotnet nuget push **/*.nupkg --source 'https://api.nuget.org/v3/index.json' --skip-duplicate -k ${{ secrets.NUGETKEY }} --no-symbols 1
0 commit comments