File tree Expand file tree Collapse file tree 1 file changed +6
-4
lines changed Expand file tree Collapse file tree 1 file changed +6
-4
lines changed Original file line number Diff line number Diff line change 11name : PROD
22on :
3+ release :
4+ types : [published]
35 workflow_dispatch :
46 inputs :
57 containers_tag :
2022 name : Vars
2123 runs-on : ubuntu-24.04
2224 outputs :
23- tag : ${{ steps.changelog.outputs.tag }}
24- version : ${{ steps.changelog.outputs.version }}
25- clean_changelog : ${{ steps.changelog.outputs.clean_changelog }}
25+ tag : ${{ steps.changelog.outputs.tag || github.event.release.tag_name || '' }}
26+ version : ${{ steps.changelog.outputs.version || github.event.release.tag_name || '' }}
27+ clean_changelog : ${{ steps.changelog.outputs.clean_changelog || '' }}
2628 steps :
2729 - uses : actions/checkout@v4
2830 - name : Conventional Changelog Update
7476 name : Github Release
7577 runs-on : ubuntu-24.04
7678 needs : [vars, deploy]
77- if : ${{ needs.vars.outputs.tag != '' }}
79+ if : ( needs.vars.outputs.tag != '' && github.event_name != 'release')
7880 steps :
7981 - name : Create Release
8082 uses : softprops/action-gh-release@v2
You can’t perform that action at this time.
0 commit comments