You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
45 lines
998 B
YAML
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.2
|
|
env:
|
|
BUILD_ONLY: true
|
|
|
|
- name: Zola Check
|
|
uses: shalzz/zola-deploy-action@v0.19.2
|
|
env:
|
|
BUILD_ONLY: true
|
|
CHECK_LINKS: true
|
|
|
|
build_and_deploy:
|
|
name: Build and Deploy on Main Push
|
|
runs-on: ubuntu-24.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.2
|
|
env:
|
|
PAGES_BRANCH: gh-pages
|
|
TOKEN: ${{ secrets.TOKEN }}
|
|
BUILD_THEMES: false
|