Skip to content

Add CodeCrafts talk #17

Add CodeCrafts talk

Add CodeCrafts talk #17

Workflow file for this run

name: Continuous deployment
on:
push:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/cache@v2
with:
path: ~/.cache/Tectonic
key: ${{ runner.os }}-tectonic-${{ hashFiles('**/*.tex') }}
restore-keys: |
${{ runner.os }}-tectonic-
- uses: wtfjoke/setup-tectonic@v1
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
- run: sudo apt install fonts-font-awesome
- run: |
mkdir ./out
tectonic *.tex --outdir ./out
- uses: crazy-max/ghaction-github-pages@v2
with:
target_branch: gh-pages
build_dir: out
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}