1

GitHub Pages

This commit is contained in:
Evan Pratten 2022-06-18 10:19:19 -04:00
parent ab0ea1c4d0
commit 0f6d7a8d4b

29
.github/workflows/publish.yml vendored Normal file
View File

@ -0,0 +1,29 @@
on:
push:
branches:
- master
name: Build and publish site
jobs:
build-bundle-deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Build
uses: TonySpegel/zola-build-action@v1
env:
CONFIG_FILE: "config.toml"
- name: Deploy to GitHub Pages
if: success()
uses: crazy-max/ghaction-github-pages@v2
with:
target_branch: gh-pages
build_dir: public
fqdn: va3zza.com
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}