add Gitea Actions CI workflow
All checks were successful
Gitea CI POC / build (push) Successful in 43s
All checks were successful
Gitea CI POC / build (push) Successful in 43s
This commit is contained in:
parent
747d40d6ce
commit
2650e706b0
15
.gitea/workflows/ci.yml
Normal file
15
.gitea/workflows/ci.yml
Normal 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"
|
||||
Loading…
Reference in New Issue
Block a user