Skip to content

Commit fb70f9c

Browse files
committed
keep trying to fix resume updater
1 parent d3845fa commit fb70f9c

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.github/workflows/latex-to-pdf.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,9 +33,12 @@ jobs:
3333
cp resume.pdf assets/pdfs/resume.pdf
3434
3535
- name: Commit and push PDF
36+
env:
37+
GITHUB_TOKEN: ${{ secrets.PERSONAL_TOKEN }}
3638
run: |
3739
git config --global user.name "github-actions[bot]"
3840
git config --global user.email "github-actions[bot]@users.noreply.github.com"
41+
git remote set-url origin https://x-access-token:${GITHUB_TOKEN}@github.com/${{ github.repository }}
3942
git add assets/pdfs/resume.pdf
4043
git commit -m "Auto-update resume.pdf from LaTeX source" || echo "No changes to commit"
41-
git push
44+
git push

0 commit comments

Comments
 (0)