Small updates to iota-move-raffle-tutorial 3 #22
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 }} |