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