From c05fc645e979c3ecb192c6ed48b0ba11e78214fa Mon Sep 17 00:00:00 2001 From: Maciej Maciejko Date: Wed, 28 Feb 2024 15:08:33 +0100 Subject: [PATCH] bh action fix --- .github/workflows/helm-publish.yml | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/.github/workflows/helm-publish.yml b/.github/workflows/helm-publish.yml index 09fd47d..e74a90f 100644 --- a/.github/workflows/helm-publish.yml +++ b/.github/workflows/helm-publish.yml @@ -16,9 +16,16 @@ jobs: with: version: 'v3.7.0' - - name: Package and publish Helm Charts + - name: Configure Git + run: | + git config --global user.email "actions@github.com" + git config --global user.name "GitHub Actions" + + - name: Package Helm Charts + run: helm package -d charts hive-metastore + + - name: Publish Helm Charts on bh-pages branch run: | - helm package -d charts hive-metastore git add -A git fetch git stash