Skip to content

Commit c187ad0

Browse files
chore: add missing step to automatically release new chart
1 parent 95bf39c commit c187ad0

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

.github/workflows/release-with-version.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -156,6 +156,16 @@ jobs:
156156
echo "Pushing tag: ${{ env.NEW_TAG }}"
157157
git push origin ${{ env.NEW_TAG }}
158158
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+
159169
- name: Generate release summary
160170
run: |
161171
echo "## 🎉 Release Summary" >> $GITHUB_STEP_SUMMARY

0 commit comments

Comments
 (0)