docs: add demo file and .latexmkrc #105
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
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
name: Build | |
jobs: | |
build-package: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
name: checkout code | |
- uses: xu-cheng/texlive-action/full@v1 | |
with: | |
run: | | |
apk add zip diffutils | |
l3build ctan | |
name: build package with l3build | |
- name: check if generated files are of latest version | |
run: | | |
git diff --exit-code | |
- uses: actions/upload-artifact@v2 | |
with: | |
path: | | |
build/distrib/tds/ | |
name: presenter.tds | |
name: upload build package artifacts |