mirror of
https://github.com/SebastianStork/kita.git
synced 2026-01-21 20:21:34 +01:00
18 lines
361 B
YAML
18 lines
361 B
YAML
name: Publish demo on GitHub Pages
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
|
|
jobs:
|
|
build:
|
|
name: Publish site
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout main
|
|
uses: actions/checkout@v3.0.0
|
|
- name: Build and deploy
|
|
uses: shalzz/zola-deploy-action@master
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|