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.
1 parent 9de5001 commit e65357fCopy full SHA for e65357f
.github/workflows/push.yml
@@ -96,11 +96,15 @@ jobs:
96
run: make packagemanifests
97
98
# Commit back changes
99
- - uses: stefanzweifel/git-auto-commit-action@v4
+ - name: Commit files
100
+ run: |
101
+ git config --local user.email "[email protected]"
102
+ git config --local user.name "stakater-user"
103
+ git commit -m "[skip-ci] Update artifacts" -a
104
+ - name: Push changes
105
+ uses: ad-m/github-push-action@master
106
with:
- commit_message: "[skip-ci] Update artifacts"
- commit_user_name: stakater-user
- commit_user_email: [email protected]
107
+ github_token: ${{ secrets.STAKATER_GITHUB_TOKEN }}
108
109
- name: Push Latest Tag
110
uses: anothrNick/[email protected]
0 commit comments