renovate[bot] 6ca5a56055
⬆️ chore(deps): update demo and CI to Zola v0.19.1 (#345)
Co-authored-by: welpo <welpo@users.noreply.github.com>
2024-07-01 15:08:18 +02:00

45 lines
998 B
YAML

name: Build Site
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
check_and_build_pr:
name: Check and Build for Pull Requests
runs-on: ubuntu-latest
if: github.event_name == 'pull_request'
steps:
- name: Checkout Code
uses: actions/checkout@v4
- name: Zola Build
uses: shalzz/zola-deploy-action@v0.19.1
env:
BUILD_ONLY: true
- name: Zola Check
uses: shalzz/zola-deploy-action@v0.19.1
env:
BUILD_ONLY: true
CHECK_LINKS: true
build_and_deploy:
name: Build and Deploy on Main Push
runs-on: ubuntu-22.04
if: github.event_name == 'push' && github.ref == 'refs/heads/main'
steps:
- name: Checkout Code
uses: actions/checkout@v4
- name: Build and Deploy
uses: shalzz/zola-deploy-action@v0.19.1
env:
PAGES_BRANCH: gh-pages
TOKEN: ${{ secrets.TOKEN }}
BUILD_THEMES: false