ci: add Gitea Actions workflow for auto-deploy to OCI on main push

This commit is contained in:
Fam Zheng 2026-04-07 10:33:10 +01:00 committed by Fam Zheng
parent 0be0652a49
commit 71cce2dd44

View File

@ -0,0 +1,19 @@
name: Deploy to OCI
on:
push:
branches:
- main
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