1 parent 5916872 commit 2db79b5Copy full SHA for 2db79b5
1 file changed
.github/workflows/version.yml
@@ -27,6 +27,7 @@ concurrency:
27
cancel-in-progress: false
28
29
permissions:
30
+ actions: write
31
contents: write
32
33
jobs:
@@ -144,6 +145,13 @@ jobs:
144
145
git tag "${{ steps.next.outputs.tag }}"
146
git push origin "${{ steps.next.outputs.tag }}"
147
148
+ - name: Trigger Release workflow
149
+ if: steps.next.outputs.already_tagged != 'true'
150
+ env:
151
+ GH_TOKEN: ${{ github.token }}
152
+ run: |
153
+ gh workflow run release.yml --ref main -f tag_name="${{ steps.next.outputs.tag }}"
154
+
155
- name: Summary
156
run: |
157
echo "Bump : ${{ steps.bump.outputs.value }}"
0 commit comments