Skip to content

Use #showcase id in section to dodge navbar #14

Use #showcase id in section to dodge navbar

Use #showcase id in section to dodge navbar #14

Workflow file for this run

name: Publish
on:
push:
branches:
- master
jobs:
website:
runs-on: ubuntu-20.04
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
steps:
- uses: actions/checkout@v2
with:
submodules: true
fetch-depth: 0
- name: Build website
run: |
docker run -u "$(id -u):$(id -g)" -v $PWD:/app --workdir /app ghcr.io/getzola/zola:v0.15.1 build
- name: Copy CNAME
run: cp CNAME ./public/.
- name: Publish website
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./public