👷 misc(CI): improve CI to check and build for PRs
parent
6efe2ee57d
commit
262fcd95f1
@ -0,0 +1,44 @@
|
|||||||
|
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 Check
|
||||||
|
uses: shalzz/zola-deploy-action@v0.18.0
|
||||||
|
env:
|
||||||
|
BUILD_ONLY: true
|
||||||
|
CHECK_LINKS: true
|
||||||
|
|
||||||
|
- name: Zola Build
|
||||||
|
uses: shalzz/zola-deploy-action@v0.18.0
|
||||||
|
env:
|
||||||
|
BUILD_ONLY: 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.18.0
|
||||||
|
env:
|
||||||
|
PAGES_BRANCH: gh-pages
|
||||||
|
TOKEN: ${{ secrets.TOKEN }}
|
||||||
|
BUILD_THEMES: false
|
@ -1,18 +0,0 @@
|
|||||||
# 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@master
|
|
||||||
env:
|
|
||||||
# Target branch
|
|
||||||
PAGES_BRANCH: gh-pages
|
|
||||||
# Provide personal access token
|
|
||||||
TOKEN: ${{ secrets.TOKEN }}
|
|
||||||
BUILD_THEMES: false
|
|
Loading…
Reference in New Issue