Files
org_roam/.gitea/workflows/build.yml
Workflow config file is invalid. Please check your config file: yaml: line 20: found a tab character where an indentation space is expected
2026-05-06 22:54:52 +01:00

27 lines
465 B
YAML

name: Build Roam Site
on:
push:
branches:
- main
schedule:
- cron: "0 0 * * *"
workflow_dispatch:
jobs:
build:
runs-on: site-build
steps:
- uses: actions/checkout@v4
- name: Build site
run: |
mkdir -p /home/zaine/logs
make 2>&1 | tee /home/zaine/logs/org-roam.log
- name: Monitor build and notify Discord
if: always()
run: /snap/bin/pwsh -NoProfile -File ./gitea-build-monitor.ps1