From 78f8c1d5b59c3cf7f2ea4a22dbf575d0c56012ea Mon Sep 17 00:00:00 2001 From: Guillem Gari Date: Thu, 25 Jul 2024 17:38:48 +0200 Subject: [PATCH] removed relase on devel --- .github/workflows/helm-doc.yaml | 2 +- .github/workflows/helm-releaser.yaml | 29 ---------------------------- 2 files changed, 1 insertion(+), 30 deletions(-) delete mode 100644 .github/workflows/helm-releaser.yaml diff --git a/.github/workflows/helm-doc.yaml b/.github/workflows/helm-doc.yaml index c8bf6ec..3e62fac 100644 --- a/.github/workflows/helm-doc.yaml +++ b/.github/workflows/helm-doc.yaml @@ -30,7 +30,7 @@ jobs: - run: | git add . if ! git diff --cached --quiet; then - git commit -m "Update Chart readme" + git commit -m "Automated chart README.md update" git push else echo "No changes to commit." diff --git a/.github/workflows/helm-releaser.yaml b/.github/workflows/helm-releaser.yaml deleted file mode 100644 index cc79654..0000000 --- a/.github/workflows/helm-releaser.yaml +++ /dev/null @@ -1,29 +0,0 @@ ---- -name: Release Charts - -on: - push: - branches: - - devel - workflow_dispatch: - -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.6.0 - env: - CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}"