We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Update git config and remote URL in kustomize-ci workflow
1 parent 9d8abdb commit f85bc07Copy full SHA for f85bc07
.github/workflows/kustomize-ci.yaml
@@ -62,10 +62,11 @@ jobs:
62
TOKEN: ${{ secrets.GH_PAT }}
63
IMAGE_TAG: ${{ env.IMAGE_TAG }}
64
run: |
65
- git config --global user.name ${{ secrets.GIT_USER_EMAIL }}
66
- git config --global user.email ${{ secrets.GIT_USER_NAME }}
+ git config --global user.name "${{ secrets.GIT_USER_NAME }}"
+ git config --global user.email "${{ secrets.GIT_USER_EMAIL }}"
67
68
git remote set-url origin https://x-access-token:${{ secrets.GH_PAT }}@github.com/${{ github.repository }}.git
69
+ git remote set-url origin https://x-access-token:${{ secrets.GH_PAT }}@github.com/${{ github.repository }}.git
70
71
72
git add kustomize/overlays/dev/patch-deployment-image.yaml
0 commit comments