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 259cb25 commit 6c14007Copy full SHA for 6c14007
1 file changed
.github/workflows/build.yml
@@ -42,8 +42,14 @@ jobs:
42
node pdf.js
43
find *.pdf
44
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
+
50
- name: Commit snapshot + PDF
51
if: ${{ steps.config.outputs.grep == 'true' }}
- uses: stefanzweifel/git-auto-commit-action@v4
- with:
- commit_message: 'PDF gegenereerd vanuit alternateFormats'
52
53
+ git add ~/static/*
54
+ git commit -m "Snapshot gegenereerd" || echo "No changes to commit"
55
+ git push
0 commit comments