File tree Expand file tree Collapse file tree 1 file changed +5
-3
lines changed
Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -106,11 +106,13 @@ jobs:
106106 uses : ncipollo/release-action@v1
107107 with :
108108 tag : ${{ steps.version.outputs.VERSION }}
109- name : Release ${{ steps.version.outputs.VERSION }}
110- body : Manual release ${{ steps.version.outputs.VERSION }}
109+ name : ${{ github.event_name == 'workflow_dispatch' && format('Release {0}', steps.version.outputs.VERSION) || '' }}
110+ body : ${{ github.event_name == 'workflow_dispatch' && format('Release {0}', steps.version.outputs.VERSION) || '' }}
111111 artifacts : |
112112 storage-cli-${{ steps.version.outputs.VERSION_NUMBER }}-linux-amd64
113113 storage-cli-${{ steps.version.outputs.VERSION_NUMBER }}-windows-amd64.exe
114114 token : ${{ secrets.GITHUB_TOKEN }}
115115 allowUpdates : true
116- makeLatest : true
116+ makeLatest : true
117+ omitNameDuringUpdate : ${{ github.event_name == 'release' }}
118+ omitBodyDuringUpdate : ${{ github.event_name == 'release' }}
You can’t perform that action at this time.
0 commit comments