-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #15 from stakater/fix-pipeline
fix git commit/push step
- Loading branch information
Showing
1 changed file
with
9 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -96,12 +96,16 @@ jobs: | |
run: make packagemanifests | ||
|
||
# Commit back changes | ||
- uses: stefanzweifel/git-auto-commit-action@v4 | ||
- name: Commit files | ||
run: | | ||
git config --local user.email "[email protected]" | ||
git config --local user.name "stakater-user" | ||
git commit -m "[skip-ci] Update artifacts" -a | ||
- name: Push changes | ||
uses: ad-m/github-push-action@master | ||
with: | ||
commit_message: "[skip-ci] Update artifacts" | ||
commit_user_name: stakater-user | ||
commit_user_email: [email protected] | ||
|
||
github_token: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
- name: Push Latest Tag | ||
uses: anothrNick/[email protected] | ||
env: | ||
|