From 4611d966519484572416c878378fd1b0a3542fa9 Mon Sep 17 00:00:00 2001 From: Firmlyzhu Date: Fri, 16 Jan 2026 16:32:40 +0800 Subject: [PATCH] chore: add Release Charts workflow add Release Charts workflow. --- .github/workflows/chart-release.yaml | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 .github/workflows/chart-release.yaml diff --git a/.github/workflows/chart-release.yaml b/.github/workflows/chart-release.yaml new file mode 100644 index 0000000..c265bf8 --- /dev/null +++ b/.github/workflows/chart-release.yaml @@ -0,0 +1,27 @@ +name: Release Charts + +on: + push: + branches: + - master + +jobs: + release: + permissions: + contents: write + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v4 + with: + fetch-depth: 0 + + - name: Configure Git + run: | + git config user.name "$GITHUB_ACTOR" + git config user.email "$GITHUB_ACTOR@users.noreply.github.com" + + - name: Run chart-releaser + uses: helm/chart-releaser-action@v1.7.0 + env: + CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}"