mirror of
https://github.com/getzola/zola
synced 2024-11-10 06:14:19 +00:00
fix: fix docs CI workflow; build in MRs; build and deploy on master (#2504)
* fix: fix docs CI workflow; build in MRs; build and deploy on master * fix: set link checker to warn, not error, for site in docs/
This commit is contained in:
parent
ceced4bf1c
commit
3d0749d478
2 changed files with 22 additions and 3 deletions
23
.github/workflows/docs.yml
vendored
23
.github/workflows/docs.yml
vendored
|
@ -1,18 +1,35 @@
|
||||||
name: Build and deploy GH Pages
|
name: Build and deploy GH Pages
|
||||||
|
|
||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
branches:
|
branches:
|
||||||
- master
|
- master
|
||||||
|
pull_request:
|
||||||
|
branches:
|
||||||
|
- master
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build:
|
build:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
if: github.ref != 'refs/heads/master'
|
||||||
steps:
|
steps:
|
||||||
- name: checkout
|
- name: checkout
|
||||||
uses: actions/checkout@v3.0.0
|
uses: actions/checkout@v4
|
||||||
|
- name: build
|
||||||
|
uses: shalzz/zola-deploy-action@v0.18.0
|
||||||
|
env:
|
||||||
|
BUILD_DIR: docs/
|
||||||
|
BUILD_ONLY: true
|
||||||
|
|
||||||
|
build_and_deploy:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
if: github.ref == 'refs/heads/master'
|
||||||
|
steps:
|
||||||
|
- name: checkout
|
||||||
|
uses: actions/checkout@v4
|
||||||
- name: build_and_deploy
|
- name: build_and_deploy
|
||||||
uses: shalzz/zola-deploy-action@v0.17.2
|
uses: shalzz/zola-deploy-action@v0.18.0
|
||||||
env:
|
env:
|
||||||
PAGES_BRANCH: gh-pages
|
PAGES_BRANCH: gh-pages
|
||||||
BUILD_DIR: docs/
|
BUILD_DIR: docs/
|
||||||
TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
|
|
@ -17,6 +17,8 @@ highlight_theme = "kronuz"
|
||||||
# { theme = "base16-ocean-light", filename = "syntax-theme-light.css" },
|
# { theme = "base16-ocean-light", filename = "syntax-theme-light.css" },
|
||||||
#]
|
#]
|
||||||
|
|
||||||
|
[link_checker]
|
||||||
|
internal_level = "warn"
|
||||||
|
|
||||||
[extra]
|
[extra]
|
||||||
author = "Vincent Prouillet"
|
author = "Vincent Prouillet"
|
||||||
|
|
Loading…
Reference in a new issue