From 895f4f7259c1b70123ef1390f8205013e466da65 Mon Sep 17 00:00:00 2001 From: Jarrett Booz Date: Mon, 1 Dec 2025 18:59:24 +0000 Subject: [PATCH] Adds Update Helm Chart CI Workflow --- .github/workflows/update-helm-chart.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .github/workflows/update-helm-chart.yml diff --git a/.github/workflows/update-helm-chart.yml b/.github/workflows/update-helm-chart.yml new file mode 100644 index 00000000..3cd28bc1 --- /dev/null +++ b/.github/workflows/update-helm-chart.yml @@ -0,0 +1,18 @@ +name: Update Helm Chart + +on: + release: + types: [published] + +jobs: + update: + runs-on: ubuntu-latest + steps: + - name: Update Helm chart + uses: cmu-sei/Crucible-Github-Actions/actions/update-helm-chart@update-helm-chart-v2 + with: + app_name: Blueprint UI + github_app_id: ${{ secrets.CRUCIBLE_HELM_UPDATE_APP_ID }} + github_app_private_key: ${{ secrets.CRUCIBLE_HELM_UPDATE_PRIVATE_KEY }} + chart_file: charts/blueprint/charts/blueprint-ui/Chart.yaml + parent_chart_file: charts/blueprint/Chart.yaml