Update href #46
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: Deploy Zola site to Pages | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Build and deploy | |
# Hotfix used as per https://github.com/shalzz/zola-deploy-action/issues/81 | |
uses: shalzz/[email protected] | |
env: | |
PAGES_BRANCH: gh-pages | |
TOKEN: ${{ secrets.GITHUB_TOKEN }} |