File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change 1
- name : publish
2
- run-name : Publish ${{ inputs.VERSION }} (pre-release - ${{ inputs.IS_PRE_RELEASE }}) by @${{ github.actor }} from ${{ github.ref_name }}
1
+ name : release
2
+ run-name : Release ${{ inputs.VERSION }} (pre-release - ${{ inputs.IS_PRE_RELEASE }}) by @${{ github.actor }} from ${{ github.ref_name }}
3
3
4
4
on :
5
5
workflow_dispatch :
82
82
run : python -m build
83
83
working-directory : ./nextmv-py
84
84
85
- publish : # This job is used to publish the release to PyPI/TestPyPI
85
+ release : # This job is used to publish the release to PyPI/TestPyPI
86
86
runs-on : ubuntu-latest
87
87
needs : bump
88
88
strategy :
@@ -132,8 +132,8 @@ jobs:
132
132
133
133
notify :
134
134
runs-on : ubuntu-latest
135
- needs : publish
136
- if : ${{ needs.publish .result == 'success' && inputs.IS_PRE_RELEASE == false }}
135
+ needs : release
136
+ if : ${{ needs.release .result == 'success' && inputs.IS_PRE_RELEASE == false }}
137
137
steps :
138
138
- name : notify slack
139
139
run : |
You can’t perform that action at this time.
0 commit comments