Fixups to render properly mathjax #140
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] | |
jobs: | |
create_draft_release: | |
runs-on: ubuntu-latest | |
outputs: | |
id: ${{ steps.create_draft_release.outputs.id }} | |
steps: | |
- name: Create draft release on tags | |
id: create_draft_release | |
if: ${{ startsWith(github.ref, 'refs/tags/') }} | |
uses: actions/create-release@v1.1.4 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
tag_name: ${{ github.ref }} | |
release_name: ${{ github.ref }} | |
draft: true | |
prerelease: false | |
latex-job: | |
needs: create_draft_release | |
runs-on: ubuntu-latest | |
name: Compile And Upload PDF | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Set git user | |
run: | | |
git config --global user.name github-actions | |
git config --global user.email github-actions-bot@users.noreply.github.com | |
- name: Define env | |
run: | | |
echo "GITHUB_TAG=$(git describe --always --tags)" >> $GITHUB_ENV | |
echo "BUILD_DATE=$(date +'%Y_%m_%d')" >> $GITHUB_ENV | |
- uses: actions/cache@v2 | |
name: Tectonic Cache | |
with: | |
path: ~/.cache/Tectonic | |
key: ${{ runner.os }}-tectonic-${{ hashFiles('**/*.tex') }} | |
restore-keys: | | |
${{ runner.os }}-tectonic- | |
- uses: wtfjoke/setup-tectonic@v2 | |
with: | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
- name: Prepare env | |
run: | | |
sudo apt update | |
sudo apt install fonts-opendyslexic fonts-texgyre texlive-bibtex-extra biber | |
sudo rm -rf /usr/share/fonts/woff/opendyslexic | |
mkdir assets | |
- name: Run Tectonic | |
run: | | |
tectonic hm.tex | |
mv hm.pdf assets/hm-tg.pdf | |
- name: Upload PDF | |
if: ${{ success() }} | |
uses: actions/upload-artifact@v2 | |
with: | |
path: assets/hm-tg.pdf | |
name: hm-tg-${{ env.BUILD_DATE }}-${{ env.GITHUB_TAG }}.pdf | |
if-no-files-found: error | |
- name: Remove TeX Gyre font customizations, falls back to OpenDyslxic | |
run: sed -i.bak '11,13d' hm.tex | |
- name: Run Tectonic | |
run: | | |
tectonic hm.tex | |
mv hm.pdf assets/hm-od.pd | |
- name: Upload release assets | |
if: ${{ success() && startsWith(github.ref, 'refs/tags/') }} | |
id: upload-release-assets | |
uses: dwenegar/upload-release-assets@v1 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
release_id: ${{ needs.create_draft_release.outputs.id }} | |
assets_path: assets/ |