File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed
Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change 2727
2828jobs :
2929 build :
30- name : Build
30+ name : Build and Package
3131 timeout-minutes : 15
3232 runs-on : ubuntu-latest
3333
@@ -236,10 +236,11 @@ jobs:
236236 path : packages
237237
238238 - name : Push packages to nuget.org
239- run : dotnet nuget push '${{ github.workspace }}/packages/*.nupkg' --api-key '${{ secrets.STEELTOE_NUGET_API_KEY }}' --source 'nuget.org'
239+ run : dotnet nuget push '${{ github.workspace }}/packages/*.nupkg' --skip-duplicate -- api-key '${{ secrets.STEELTOE_NUGET_API_KEY }}' --source 'nuget.org'
240240
241241 open_pr :
242- name : Open pull request to bump Steeltoe version after release
242+ name : Open pull request to bump Steeltoe version after stable release
243+ if : ${{ github.event_name == 'release' && !contains(github.ref_name, '-') }}
243244 needs : nuget-org-deploy
244245 timeout-minutes : 15
245246 runs-on : ubuntu-latest
You can’t perform that action at this time.
0 commit comments