We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dff8384 commit 31a3ebbCopy full SHA for 31a3ebb
.github/workflows/release_nuget_workflow.yaml
@@ -55,7 +55,7 @@ jobs:
55
run: |
56
echo %NUSPECPATH%
57
echo %SUFFIX%
58
- if %SUFFIX%=='' (nuget pack %NUSPECPATH% -build -Prop Configuration=Release -OutputDirectory "D:\\package\\")else (nuget pack %NUSPECPATH% -Suffix %SUFFIX% -build -Prop Configuration=Release -OutputDirectory "D:\\package\\")
+ if defined SUFFIX (nuget pack %NUSPECPATH% -build -Prop Configuration=Release -OutputDirectory "D:\\package\\")else (nuget pack %NUSPECPATH% -Suffix %SUFFIX% -build -Prop Configuration=Release -OutputDirectory "D:\\package\\")
59
60
- name: nuget publish
61
run: nuget push D:\package\github_release_nuget_workflow.%TAG_NAME%.nupkg ${{secrets.NUGET_TOKEN}} -Source https://api.nuget.org/v3/index.json
0 commit comments