Skip to content

Change to "remote" and "part-time" for better formatting #20

Change to "remote" and "part-time" for better formatting

Change to "remote" and "part-time" for better formatting #20

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@v2
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
- run: sudo apt install fonts-font-awesome
- run: |
mkdir ./out
tectonic work-CV.tex --outdir ./out
tectonic sailing-CV.tex --outdir ./out
- uses: crazy-max/ghaction-github-pages@v2
with:
target_branch: gh-pages
build_dir: out
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}