Skip to content

Commit 90bab29

Browse files
Merge pull request #11 from nextmv-io/merschformann/rename-publish-workflow
Renames publish workflow to release
2 parents 62e5c61 + 16ded79 commit 90bab29

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

.github/workflows/publish.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
name: publish
1+
name: release
2+
run-name: Release ${{ inputs.VERSION }} (pre-release - ${{ inputs.IS_PRE_RELEASE }}) by @${{ github.actor }} from ${{ github.ref_name }}
23

34
on:
45
workflow_dispatch:
@@ -79,7 +80,7 @@ jobs:
7980
run: python -m build
8081
working-directory: ./nextplot
8182

82-
publish: # This job is used to publish the release to PyPI/TestPyPI
83+
release: # This job is used to publish the release to PyPI/TestPyPI
8384
runs-on: ubuntu-latest
8485
needs: bump
8586
strategy:
@@ -129,8 +130,8 @@ jobs:
129130

130131
notify:
131132
runs-on: ubuntu-latest
132-
needs: publish
133-
if: ${{ needs.publish.result == 'success' && inputs.IS_PRE_RELEASE == false }}
133+
needs: release
134+
if: ${{ needs.release.result == 'success' && inputs.IS_PRE_RELEASE == false }}
134135
steps:
135136
- name: notify slack
136137
run: |

0 commit comments

Comments
 (0)