Update the remind workflow to remind at the end of a month #170
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: Tectonic Cache | |
uses: actions/cache@v4 | |
with: | |
path: ~/.cache/Tectonic | |
key: ${{ runner.os }}-tectonic-${{ hashFiles('**/*.tex') }} | |
restore-keys: | | |
${{ runner.os }}-tectonic- | |
- name: Setup tectonic | |
uses: wtfjoke/setup-tectonic@v3 | |
with: | |
github-token: ${{ github.token }} | |
- 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 |