2 Commits

Author SHA1 Message Date
Fam Zheng
37d2b33f32 ci: fix branch name to master 2026-04-07 10:33:47 +01:00
Fam Zheng
71cce2dd44 ci: add Gitea Actions workflow for auto-deploy to OCI on main push 2026-04-07 10:33:10 +01:00

View File

@@ -0,0 +1,19 @@
name: Deploy to OCI
on:
push:
branches:
- master
jobs:
deploy:
runs-on: self-hosted
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install frontend dependencies
run: cd web && npm ci
- name: Deploy to OCI
run: make deploy-oci