From 456d4f03087063ac9fcca6b3e47600eefbd109db Mon Sep 17 00:00:00 2001 From: ddelange <14880945+ddelange@users.noreply.github.com> Date: Wed, 6 Mar 2024 07:20:19 +0100 Subject: [PATCH] Remove .github/workflows/healm_publish.yaml --- .github/workflows/healm_publish.yaml | 29 ---------------------------- 1 file changed, 29 deletions(-) delete mode 100644 .github/workflows/healm_publish.yaml diff --git a/.github/workflows/healm_publish.yaml b/.github/workflows/healm_publish.yaml deleted file mode 100644 index 26c557e..0000000 --- a/.github/workflows/healm_publish.yaml +++ /dev/null @@ -1,29 +0,0 @@ -name: helm-publish - -on: - release: - types: [prereleased, released] - -env: - HELM_CHARTS_PATH: "." - -jobs: - upload-helm-charts: - runs-on: ubuntu-latest - - steps: - - uses: actions/checkout@v2 - - - uses: azure/setup-helm@v1 - - - name: Package helm charts - run: helm package . - working-directory: ${{ env.HELM_CHARTS_PATH }} - - - name: Rename helm chart archives - run: for filename in *.tgz; do mv "$filename" "helm-chart-$filename"; done - working-directory: ${{ env.HELM_CHARTS_PATH }} - - - uses: softprops/action-gh-release@v1 - with: - files: ${{ env.HELM_CHARTS_PATH }}/*.tgz