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 049b024 commit acba838Copy full SHA for acba838
1 file changed
.github/workflows/jekyll.yml
@@ -46,9 +46,14 @@ jobs:
46
env:
47
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
48
run: |
49
- git config --global user.name "GitHub Actions"
50
- git config --global user.email "actions@github.com"
+ git config --global user.name "github-actions[bot]"
+ git config --global user.email "github-actions[bot]@users.noreply.github.com"
51
+ git remote set-url origin https://x-access-token:${PAT}@github.com/QuickImageComment/QuickImageComment.github.io.git
52
git add .
53
git commit -m "Deploy site"
- git push
54
- # Deployment job
+ - name: Push changes
55
+ uses: ad-m/github-push-action@v0.6.0
56
+ with:
57
+ github_token: ${{ secrets.GITHUB_TOKEN }}
58
+ branch: main
59
+ force: true
0 commit comments