Skip to content

Commit

Permalink
sets user name and email when commiting
Browse files Browse the repository at this point in the history
  • Loading branch information
benammann committed Jun 2, 2022
1 parent 7880f6a commit 49d7585
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/vuepress-release.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Release docker image
name: Update Github pages

#on:
# push:
Expand All @@ -10,7 +10,7 @@ permissions:
contents: write

jobs:
releasedocker:
releasevuepress:
runs-on: ubuntu-latest
steps:
- name: Checkout
Expand All @@ -36,4 +36,4 @@ jobs:
- name: Copy dist into latest folder
run: cp -R docs/.vuepress/dist/* gh-pages/git-secrets/latest/.
- name: Commit changes
run: cd gh-pages && git commit -am 'updates vuepress' && git push
run: cd gh-pages && git config user.name "Github Actions" && git config user.email "noreply@github.com" && git commit -am 'updates vuepress' && git push

0 comments on commit 49d7585

Please sign in to comment.