Stage and push helm index where gitconfig is set (#1251)

This commit is contained in:
Christian Adams
2023-02-22 14:09:35 -05:00
committed by GitHub
parent a3c28be98a
commit edf01f009e
3 changed files with 14 additions and 11 deletions

View File

@@ -33,11 +33,6 @@ jobs:
docker push quay.io/${{ github.repository }}:${{ github.event.release.tag_name }}
docker push quay.io/${{ github.repository }}:latest
- name: Configure git
run: |
git config user.name "$GITHUB_ACTOR"
git config user.email "$GITHUB_ACTOR@users.noreply.github.com"
- name: Release Helm chart
run: |
ansible-playbook ansible/helm-release.yml -v \
@@ -45,3 +40,4 @@ jobs:
-e chart_owner=${{ github.repository_owner }} \
-e tag=${{ github.event.release.tag_name }} \
-e gh_token=${{ secrets.GITHUB_TOKEN }}
-e gh_user=${{ github.actor }}