2020-11-13 23:39:23 +00:00
|
|
|
name: Site
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches: [master]
|
2021-10-29 16:07:49 +00:00
|
|
|
paths:
|
|
|
|
- site/**
|
|
|
|
- .github/workflows/site.yml
|
2021-10-08 14:23:29 +00:00
|
|
|
concurrency:
|
|
|
|
group: site
|
|
|
|
cancel-in-progress: true
|
2020-11-13 23:39:23 +00:00
|
|
|
jobs:
|
|
|
|
site:
|
|
|
|
name: Deploy site
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Checkout
|
|
|
|
uses: actions/checkout@v2
|
2021-04-03 23:40:28 +00:00
|
|
|
- name: Build
|
2021-10-29 16:07:49 +00:00
|
|
|
uses: shalzz/zola-deploy-action@v0.14.1
|
2020-11-13 23:39:23 +00:00
|
|
|
env:
|
|
|
|
BUILD_DIR: site
|
2021-04-03 23:40:28 +00:00
|
|
|
BUILD_ONLY: true
|
|
|
|
- name: Deploy
|
|
|
|
if: ${{ success() }}
|
2021-10-29 16:07:49 +00:00
|
|
|
uses: JamesIves/github-pages-deploy-action@4.1.5
|
2021-04-03 23:40:28 +00:00
|
|
|
with:
|
|
|
|
branch: gh-pages
|
|
|
|
folder: site/public
|