added hot-update action #1
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: Hot Update | |
| on: | |
| push: | |
| branches: | |
| - master | |
| jobs: | |
| hot-update: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Update font dependencies | |
| run: | | |
| git submodule init | |
| git submodule update | |
| cd fonts | |
| git submodule init | |
| git submodule update | |
| - name: Compile main.pdf | |
| run: make main.pdf | |
| - name: Release | |
| run: gh release upload hot-update main.pdf |