All checks were successful
Automatic Documentation Deployment / Sync Docs to https://kb.bunny-lab.io (push) Successful in 5s
38 lines
1.0 KiB
YAML
38 lines
1.0 KiB
YAML
name: Automatic Documentation Deployment
|
|
|
|
on:
|
|
push:
|
|
branches: [ main ]
|
|
|
|
jobs:
|
|
zensical_deploy:
|
|
name: Sync Docs to https://kb.bunny-lab.io
|
|
runs-on: zensical-host
|
|
|
|
steps:
|
|
- name: Checkout Repository
|
|
uses: actions/checkout@v3
|
|
|
|
- name: Stop Zensical Service
|
|
run: sudo /usr/bin/systemctl stop zensical-watchdog.service
|
|
|
|
- name: Sync repository into /srv/zensical/docs
|
|
run: |
|
|
rsync -rlD --delete \
|
|
--exclude='.git/' \
|
|
--exclude='.gitea/' \
|
|
--exclude='assets/' \
|
|
--exclude='schema/' \
|
|
--exclude='stylesheets/' \
|
|
--exclude='schema.json' \
|
|
--chmod=D2775,F664 \
|
|
. /srv/zensical/docs/
|
|
|
|
- name: Start Zensical Service
|
|
run: sudo /usr/bin/systemctl start zensical-watchdog.service
|
|
|
|
- name: Notify via NTFY
|
|
if: always()
|
|
run: |
|
|
curl -d "https://kb.bunny-lab.io - Zensical job status: ${{ job.status }}" https://ntfy.bunny-lab.io/gitea-runners
|