From 6e489d4e084778bd40e92d44052ef8e8f95547ae Mon Sep 17 00:00:00 2001 From: David Grove Date: Tue, 17 Sep 2024 15:34:31 -0400 Subject: [PATCH] Revert "Attempt to consolidate helm chart publishing actions (#65)" This reverts commit 40911bb6a494fa446e2be5a7cb2305a54da2409c. --- .github/workflows/release-chart.yaml | 33 ---------------------------- 1 file changed, 33 deletions(-) diff --git a/.github/workflows/release-chart.yaml b/.github/workflows/release-chart.yaml index 67369fa..4ecf435 100644 --- a/.github/workflows/release-chart.yaml +++ b/.github/workflows/release-chart.yaml @@ -6,10 +6,6 @@ on: tags: - 'v*' # Push events to matching v*, i.e. v1.0, v20.15.10 -concurrency: - group: "pages" - cancel-in-progress: false - jobs: release: permissions: @@ -37,32 +33,3 @@ jobs: skip_existing: true env: CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}" - - deploy: - needs: release - permissions: - contents: read - pages: write - id-token: write - environment: - name: github-pages - url: ${{ steps.deployment.outputs.page_url }} - runs-on: ubuntu-latest - steps: - - name: Checkout - uses: actions/checkout@v4 - with: - ref: gh-pages - - - name: Setup Pages - uses: actions/configure-pages@v5 - - - name: Upload artifact - uses: actions/upload-pages-artifact@v3 - with: - # Upload entire repository - path: '.' - - - name: Deploy to GitHub Pages - id: deployment - uses: actions/deploy-pages@v4