From d0fad2cfceb01c21d1dea8972772948d6abc2082 Mon Sep 17 00:00:00 2001 From: Gary Stringham <141124094+RR-Gary-Stringham@users.noreply.github.com> Date: Sat, 1 Nov 2025 19:05:07 -0700 Subject: [PATCH] Delete .github/workflows/helm.yml --- .github/workflows/helm.yml | 26 -------------------------- 1 file changed, 26 deletions(-) delete mode 100644 .github/workflows/helm.yml diff --git a/.github/workflows/helm.yml b/.github/workflows/helm.yml deleted file mode 100644 index 5c27af1e..00000000 --- a/.github/workflows/helm.yml +++ /dev/null @@ -1,26 +0,0 @@ -name: Helm Chart CI - -on: - # Triggers the workflow on push or pull request events but only for the dev branch - push: - branches: [ main ] - paths: [ dev/helm/** ] - - # Allows you to run this workflow manually from the Actions tab - workflow_dispatch: - -jobs: - build: - name: Update Chart - runs-on: ubuntu-latest - - steps: - # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it - - uses: actions/checkout@v2 - - - name: Package and Push Chart - run: | - helm plugin install https://github.com/chartmuseum/helm-push.git - helm repo add chartmuseum https://charts.js.wiki - helm cm-push --version="2.2.${{github.run_number}}" --username="${{secrets.HELM_REPO_USERNAME}}" --password="${{secrets.HELM_REPO_PASSWORD}}" dev/helm/ chartmuseum - helm repo remove chartmuseum