-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[workflow] Gh workflow to sync a deleted release
- Loading branch information
1 parent
d0953b2
commit 8f3cf49
Showing
1 changed file
with
22 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
# Description: This workflow is used to communicate Kuadrant helm charts repo that a release has been deleted. | ||
|
||
name: Delete Release Helm Chart | ||
on: | ||
release: | ||
types: | ||
- deleted | ||
jobs: | ||
delete_chart_release: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Parse Tag | ||
run: | | ||
tag=${{ github.event.release.tag_name || inputs.operatorTag }} | ||
echo "OPERATOR_VERSION=${tag#v}" >> $GITHUB_ENV | ||
- name: Sync deleted Helm Chart with repository | ||
run: | | ||
make helm-sync-package-deleted \ | ||
VERSION=${{env.OPERATOR_VERSION}} \ | ||
HELM_WORKFLOWS_TOKEN=${{ secrets.HELM_WORKFLOWS_TOKEN }} |