Style article h2 and code blocks, reformat _base.scss indentation #1233
This file contains hidden or 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 | |
| on: | |
| push: | |
| branches: | |
| - master | |
| pull_request: | |
| workflow_dispatch: | |
| jobs: | |
| build: | |
| name: Build | |
| runs-on: ubuntu-latest | |
| if: github.ref != 'refs/heads/master' | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: shalzz/zola-deploy-action@master | |
| env: | |
| PAGES_BRANCH: gh-pages | |
| BUILD_DIR: . | |
| BUILD_ONLY: true | |
| BUILD_FLAGS: --drafts | |
| deploy: | |
| name: Deploy | |
| runs-on: ubuntu-latest | |
| if: github.ref == 'refs/heads/master' | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: shalzz/zola-deploy-action@master | |
| env: | |
| PAGES_BRANCH: gh-pages | |
| BUILD_DIR: . | |
| TOKEN: ${{ secrets.TOKEN }} |