We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 396f224 commit 6fa05f0Copy full SHA for 6fa05f0
.github/workflows/deploy.yml
@@ -1,4 +1,4 @@
1
-name: Deploy to GitHub Pages
+name: Update Publications
2
3
on:
4
push:
@@ -44,12 +44,12 @@ jobs:
44
45
- name: Commit & push if changed
46
run: |
47
+ git config user.name "github-actions[bot]"
48
+ git config user.email "github-actions[bot]@users.noreply.github.com"
49
+ git add -A
50
if git diff --quiet; then
51
echo "No changes to commit."
52
exit 0
53
fi
- git config user.name "github-actions[bot]"
- git config user.email "github-actions[bot]@users.noreply.github.com"
- git add -A
54
git commit -m "chore: update publications from Google Scholar"
55
git push
0 commit comments