20 lines
584 B
YAML
20 lines
584 B
YAML
|
# On every push this script is executed
|
||
|
on: push
|
||
|
name: Build and deploy GH Pages
|
||
|
jobs:
|
||
|
build:
|
||
|
runs-on: ubuntu-latest
|
||
|
if: github.ref == 'refs/heads/main'
|
||
|
steps:
|
||
|
- name: checkout
|
||
|
uses: actions/checkout@v3.0.0
|
||
|
- name: build_and_deploy
|
||
|
uses: shalzz/zola-deploy-action@v0.16.1
|
||
|
env:
|
||
|
# Target branch
|
||
|
PAGES_BRANCH: gh-pages
|
||
|
# Provide personal access token
|
||
|
# TOKEN: ${{ secrets.TOKEN }}
|
||
|
# Or if publishing to the same repo, use the automatic token
|
||
|
TOKEN: ${{ secrets.GITHUB_TOKEN }}
|