We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 69a6d2f commit 394e021Copy full SHA for 394e021
.github/workflows/deploy.yml
@@ -1,9 +1,13 @@
1
name: Update Publications
2
3
on:
4
- push:
5
- branches: [ gh-pages ]
+ # push:
+ # branches: [ gh-pages ]
6
workflow_dispatch:
7
+ inputs:
8
+ scholar_id:
9
+ required: true
10
+ default: "Xf3M93cAAAAJ"
11
schedule:
12
- cron: "0 7 * * 0" # Sundays 07:00 UTC
13
@@ -38,9 +42,9 @@ jobs:
38
42
run: |
39
43
PYTHONPATH=. python scripts/migrate_files.py
40
44
41
- # - name: Update publications file
- # run: |
- # PYTHONPATH=. python scripts/update_pubs.py --scholar_id Xf3M93cAAAAJ
45
+ - name: Update publications file
46
+ run: |
47
+ PYTHONPATH=. python scripts/update_pubs.py --scholar_id "${{ inputs.scholar_id }}"
48
49
- name: Create publications.bib
50
0 commit comments