mirror of
https://github.com/pawroman/zola-theme-terminimal
synced 2024-11-22 20:43:03 +00:00
19 lines
345 B
YAML
19 lines
345 B
YAML
|
name: Publish demo on GitHub Pages
|
||
|
|
||
|
on:
|
||
|
push:
|
||
|
branches:
|
||
|
- master
|
||
|
|
||
|
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 }}
|