Skip to content

Commit 6c14007

Browse files
committed
trigger
1 parent 259cb25 commit 6c14007

1 file changed

Lines changed: 9 additions & 3 deletions

File tree

.github/workflows/build.yml

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,8 +42,14 @@ jobs:
4242
node pdf.js
4343
find *.pdf
4444
mv *.pdf ~/static/
45+
- name: Configure Git
46+
run: |
47+
git config --global user.name "github-actions[bot]"
48+
git config --global user.email "github-actions[bot]@users.noreply.github.com"
49+
4550
- name: Commit snapshot + PDF
4651
if: ${{ steps.config.outputs.grep == 'true' }}
47-
uses: stefanzweifel/git-auto-commit-action@v4
48-
with:
49-
commit_message: 'PDF gegenereerd vanuit alternateFormats'
52+
run: |
53+
git add ~/static/*
54+
git commit -m "Snapshot gegenereerd" || echo "No changes to commit"
55+
git push

0 commit comments

Comments
 (0)