We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d3845fa commit fb70f9cCopy full SHA for fb70f9c
.github/workflows/latex-to-pdf.yml
@@ -33,9 +33,12 @@ jobs:
33
cp resume.pdf assets/pdfs/resume.pdf
34
35
- name: Commit and push PDF
36
+ env:
37
+ GITHUB_TOKEN: ${{ secrets.PERSONAL_TOKEN }}
38
run: |
39
git config --global user.name "github-actions[bot]"
40
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 }}
42
git add assets/pdfs/resume.pdf
43
git commit -m "Auto-update resume.pdf from LaTeX source" || echo "No changes to commit"
- git push
44
+ git push
0 commit comments