Skip to content

Small updates to iota-move-raffle-tutorial 3 #22

Small updates to iota-move-raffle-tutorial 3

Small updates to iota-move-raffle-tutorial 3 #22

Workflow file for this run

name: Zola GitHub pages
on:
push:
branches:
- main
jobs:
zola:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install Zola
run: curl -L ${BASE_URL}/${VERS}/zola-${VERS}-${ARCH}.tar.gz | tar -xz
- name: Zola Build
run: ./zola build
- name: Deploy Zola
uses: crazy-max/ghaction-github-pages@v3
with:
target_branch: gh-pages
build_dir: public
env:
BASE_URL: https://github.com/getzola/zola/releases/download
VERS: v0.16.1
ARCH: x86_64-unknown-linux-gnu
# https://github.com/crazy-max/ghaction-github-pages/issues/1#issuecomment-623202206
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}