Skip to content

Commit

Permalink
[workflow] Gh workflow to sync a deleted release
Browse files Browse the repository at this point in the history
  • Loading branch information
didierofrivia committed Jun 21, 2024
1 parent d0953b2 commit 8f3cf49
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/delete-release-helm-chart.yaml
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 }}

0 comments on commit 8f3cf49

Please sign in to comment.