Point out that Sass compilation has to be enabled in config.toml (#2458) #38
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: Build and deploy GH Pages | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: checkout | |
uses: actions/checkout@v3.0.0 | |
- name: build_and_deploy | |
uses: shalzz/zola-deploy-action@v0.17.2 | |
env: | |
PAGES_BRANCH: gh-pages | |
BUILD_DIR: docs/ | |
TOKEN: ${{ secrets.GITHUB_TOKEN }} |