You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
You can add a GitHub Action to compile sourabh_bajaj_resume.tex and upload the generated pdf everytime a change is made.
For instance, take the following file which would be available at .github/workflows/build-latex.yaml
# Based on: https://github.com/marketplace/actions/github-action-for-latex#examplename: Build LaTeX documenton:
workflow_dispatch:
push:
branches:
- mainpull_request:
jobs:
build-latex:
runs-on: ubuntu-lateststeps:
- name: Set up Git repositoryuses: actions/checkout@v3
- name: Compile LaTeX documentuses: xu-cheng/latex-action@v2with:
root_file: sourabh_bajaj_resume.tex
- name: Upload PDF fileuses: actions/upload-artifact@v3with:
name: sourabh_bajaj_resume_${{ github.sha }}path: sourabh_bajaj_resume.pdf
I understand the suggestion might not be suitable for this particular repository, but it's been very useful for my private fork in which I made my resume using your LaTeX template. This way I can version control both resume.tex and resume.pdf while accounting for the fact that one is a function of the other.
The text was updated successfully, but these errors were encountered:
You can add a GitHub Action to compile
sourabh_bajaj_resume.tex
and upload the generated pdf everytime a change is made.For instance, take the following file which would be available at
.github/workflows/build-latex.yaml
I understand the suggestion might not be suitable for this particular repository, but it's been very useful for my private fork in which I made my resume using your LaTeX template. This way I can version control both
resume.tex
andresume.pdf
while accounting for the fact that one is a function of the other.The text was updated successfully, but these errors were encountered: