From 2650e706b061463388a7508c53a30f1c678dfaa6 Mon Sep 17 00:00:00 2001 From: giteaadmin Date: Thu, 23 Jul 2026 02:54:32 +0800 Subject: [PATCH] add Gitea Actions CI workflow --- .gitea/workflows/ci.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .gitea/workflows/ci.yml diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml new file mode 100644 index 0000000..3c8692d --- /dev/null +++ b/.gitea/workflows/ci.yml @@ -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"