From c0dfdf591e7566752f70e5fbc6176bd110e8383b Mon Sep 17 00:00:00 2001 From: Jake Schuurmans Date: Fri, 28 Jun 2024 12:29:47 -0400 Subject: [PATCH] Testing another change to the chart releaser --- .github/workflows/chart-release.yaml | 20 +++++++++++--------- 1 file changed, 11 insertions(+), 9 deletions(-) diff --git a/.github/workflows/chart-release.yaml b/.github/workflows/chart-release.yaml index 7c64439..00902c8 100644 --- a/.github/workflows/chart-release.yaml +++ b/.github/workflows/chart-release.yaml @@ -3,7 +3,7 @@ name: Release Charts on: push: branch: - - 'v*.*.*' + - FS-1428 jobs: build: @@ -42,15 +42,17 @@ jobs: name: Create Git Commit run: | cd helm-charts + git config --unset-all http.https://github.com/.extraheader git config user.name "$GITHUB_ACTOR" git config user.email "$GITHUB_ACTOR@users.noreply.github.com" git add index.yaml *.tgz git commit -m "published ${{ env.CHART_NAME }}-${{ github.ref_name }}.tgz" - - - name: Push Changes - uses: ad-m/github-push-action@master - with: - repository: metal-toolbox/helm-charts - directory: helm-charts - github_token: ${{ secrets.GITHUB_TOKEN }} - branch: gh-pages \ No newline at end of file + git push https://token:${{ secrets.GITHUB_TOKEN }}@github.com/metal-toolbox/helm-charts.git + # - + # name: Push Changes + # uses: ad-m/github-push-action@master + # with: + # repository: metal-toolbox/helm-charts + # directory: helm-charts + # github_token: ${{ secrets.GITHUB_TOKEN }} + # branch: gh-pages \ No newline at end of file