add Gitea Actions CI workflow
All checks were successful
Gitea CI POC / build (push) Successful in 43s

This commit is contained in:
giteaadmin 2026-07-23 02:54:32 +08:00
parent 747d40d6ce
commit 2650e706b0

15
.gitea/workflows/ci.yml Normal file
View File

@ -0,0 +1,15 @@
name: Gitea CI POC
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Build & verify site
run: |
echo "=== Gitea Actions CI running ==="
uname -a
echo "--- repo files ---"; ls -la
test -f index.html && echo "index.html present ( bytes)"
echo "POC_GITEA_ACTIONS_OK"