Skip to content

Re-record 23.10 asciicasts with hx from the master branch (#37) #40

Re-record 23.10 asciicasts with hx from the master branch (#37)

Re-record 23.10 asciicasts with hx from the master branch (#37) #40

Workflow file for this run

name: Publish to Github Pages
on:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout source
uses: actions/checkout@v2
- name: Install Zola
run: wget -q -O - "https://github.com/getzola/zola/releases/download/v${ZOLA_VERSION}/zola-v${ZOLA_VERSION}-x86_64-unknown-linux-gnu.tar.gz" | sudo tar xzf - -C /usr/local/bin
env:
ZOLA_VERSION: 0.17.1
- name: Build
run: zola build
- name: Deploy
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./public