steps towards using latexgit_py which makes program output available #21
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
name: make build | |
on: [push] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: xu-cheng/texlive-action@d9f893f837a29f066e3c70080540976b47263721 | |
with: | |
scheme: full | |
run: | | |
apk add make python3 py3-pip rust cargo zip | |
make | |
# deploy to github pages | |
- name: deploy documentation | |
uses: JamesIves/github-pages-deploy-action@a1ea191d508feb8485aceba848389d49f80ca2dc | |
with: | |
branch: gh-pages | |
folder: /home/runner/work/latexgit_tex/latexgit_tex/website/ | |
single-commit: true |