From 98bf61c5439216eb34a5c1a791c6f8e71091a296 Mon Sep 17 00:00:00 2001 From: Christian Huth Date: Tue, 15 Oct 2024 13:51:03 +0200 Subject: [PATCH] Update chart-releaser.yml --- .github/workflows/chart-releaser.yml | 34 ---------------------------- 1 file changed, 34 deletions(-) diff --git a/.github/workflows/chart-releaser.yml b/.github/workflows/chart-releaser.yml index 6a4732ab..1638cc62 100644 --- a/.github/workflows/chart-releaser.yml +++ b/.github/workflows/chart-releaser.yml @@ -50,37 +50,3 @@ jobs: CR_KEYRING: keyring.gpg CR_PASSPHRASE_FILE: passphrase-file.txt CR_SIGN: true - - release2chartmuseum: - if: ${{ github.event.workflow_run.conclusion == 'success' }} - runs-on: ubuntu-latest - steps: - - name: checkout Git repository - uses: actions/checkout@v4 - with: - fetch-depth: 0 - - - name: Install Helm - uses: azure/setup-helm@v3 - - - name: Add Helm repository - run: helm repo add christianknell https://charts.knell.it - - - name: Update dependencies - run: find charts/ ! -path charts/ -maxdepth 1 -type d -exec helm dependency update {} \; - - - name: Install Helm plugin helm-push - run: helm plugin install https://github.com/chartmuseum/helm-push - - - name: Push current version to Helm repository - run: | - cd charts - for chart in */; - do - cd $chart - helm cm-push --force . https://charts.knell.it - cd .. - done - env: - HELM_REPO_USERNAME: '${{ secrets.CHARTMUSEUM_USER }}' - HELM_REPO_PASSWORD: '${{ secrets.CHARTMUSEUM_PASSWORD }}'