From 06e06c4ab092fb91898d98c2fd1a06c1cfba750c Mon Sep 17 00:00:00 2001 From: Michael Sauter Date: Fri, 29 Sep 2023 08:51:55 +0200 Subject: [PATCH] Add chart release action --- .github/workflows/chart.yaml | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 .github/workflows/chart.yaml diff --git a/.github/workflows/chart.yaml b/.github/workflows/chart.yaml new file mode 100644 index 00000000..43adec8c --- /dev/null +++ b/.github/workflows/chart.yaml @@ -0,0 +1,25 @@ +name: Release Charts + +on: + push: + branches: + - featre/easy-install + +jobs: + release: + 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.5.0 + env: + CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}"