tectonic 0.16.9

A modernized, complete, embeddable TeX/LaTeX engine. Tectonic is forked from the XeTeX extension to the classic "Web2C" implementation of TeX and uses the TeXLive distribution of support files.
Documentation
name: "Push CI/CD"

on:
  push:
    branches: [ master, rc ]

jobs:
  prep:
    uses: ./.github/workflows/prep.yml
  build_and_test:
    needs: prep
    uses: ./.github/workflows/build_and_test.yml
    secrets: inherit
  deploy:
    needs: build_and_test
    if: ${{ github.event_name == 'push' }}
    uses: ./.github/workflows/deploy.yml
    with:
      is-dev: ${{ github.ref_name == 'master' }}
      is-release: ${{ github.ref_name == 'rc' }}
    secrets: inherit