mirror of
https://git.mills.io/prologic/zs-starter-template.git
synced 2024-11-21 21:06:03 +03:00
23 lines
358 B
YAML
23 lines
358 B
YAML
---
|
|
|
|
name: Deploy
|
|
|
|
on:
|
|
push:
|
|
branches: [main]
|
|
|
|
jobs:
|
|
deploy:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout Code
|
|
uses: actions/checkout@v3
|
|
- name: Setup zs
|
|
uses: actions/setup-zs@main
|
|
- name: Build site
|
|
run: make build
|
|
- name: Publish site
|
|
uses: actions/gitea-pages@main
|
|
with:
|
|
path: .pub
|