Update src.tex #4736
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: texgen | |
| on: | |
| workflow_dispatch: | |
| push: {branches: ["master", "main"]} | |
| jobs: | |
| update_tex: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Set up Git repository | |
| uses: actions/checkout@v4 | |
| - name: Compile LaTeX document | |
| uses: xu-cheng/latex-action@v2 | |
| with: | |
| root_file: src.tex | |
| - name: Commit Files | |
| run: | | |
| rm Resume.pdf | |
| mv src.pdf Resume.pdf | |
| ls | |
| git add Resume.pdf | |
| git status | |
| git config --local user.email "41898282+github-actions[bot]@users.noreply.github.com" | |
| git config --local user.name "github-actions[bot]" | |
| git commit -m "Updating Resume.pdf" | |
| git push |