Update cv files #155
This file contains 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
# | |
# Build the cv | |
# | |
name: Build | |
on: | |
pull_request: | |
push: | |
branches: | |
- main | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: ${{ github.ref != 'refs/heads/main' }} | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
name: Build | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Install TinyTeX | |
run: | | |
make install_tex | |
echo "${HOME}/bin" >> $GITHUB_PATH | |
- name: Install LaTeX packages | |
run: | | |
tlmgr update --self | |
make install_packages | |
- name: Build CV | |
run: make | |
- name: Prepare files for gh-pages | |
run: | | |
mkdir public | |
mv cn/cv.pdf public/DTian_cv_cn.pdf | |
mv en/cv.pdf public/DTian_cv_en.pdf | |
- name: Deploy | |
uses: peaceiris/actions-gh-pages@v4 | |
if: github.event_name == 'push' | |
with: | |
github_token: ${{ github.token }} | |
publish_dir: ./public | |
force_orphan: true |