We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 95bf39c commit c187ad0Copy full SHA for c187ad0
.github/workflows/release-with-version.yml
@@ -156,6 +156,16 @@ jobs:
156
echo "Pushing tag: ${{ env.NEW_TAG }}"
157
git push origin ${{ env.NEW_TAG }}
158
159
+ - name: Trigger CI workflow for release
160
+ run: |
161
+ echo "Waiting for tag to be visible..."
162
+ sleep 10 # Give GitHub time to process the tag
163
+
164
+ echo "Triggering CI workflow for tag ${{ env.NEW_TAG }}"
165
+ gh workflow run ci.yml --ref ${{ env.NEW_TAG }}
166
+ env:
167
+ GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
168
169
- name: Generate release summary
170
run: |
171
echo "## 🎉 Release Summary" >> $GITHUB_STEP_SUMMARY
0 commit comments