Skip to content

More attempts to fix stuff #4

More attempts to fix stuff

More attempts to fix stuff #4

Workflow file for this run

name: GitHub Pages Deploy
on:
push:
branches:
- main
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Install Google Fonts
run: |
wget -O atkinson.zip https://fonts.google.com/download?family=Atkinson%20Hyperlegible
unzip -d atkinson/ atkinson.zip
mv atkinson /usr/share/fonts/
fc-cache -fv
- name: Checkout
uses: actions/checkout@v2
- name: Setup Deno
uses: denolib/setup-deno@v2
with:
deno-version: v1.x
- name: Setup Typst
uses: typst-community/setup-typst@v3
with:
cache-dependency-path: lib/satzung.typ
- name: Compile Site
run: deno task build
- name: Deploy
uses: peaceiris/actions-gh-pages@v4
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./_site