Files
news-reader-actions-test/.gitea/workflows/demo.yaml
Tony0410 514bab1771
All checks were successful
Hello Gitea Actions / build (push) Successful in 1m13s
Add initial Gitea Actions workflow
2025-12-18 14:52:20 +00:00

13 lines
374 B
YAML

name: Hello Gitea Actions
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Run a one-line script
run: echo "Hello, Gitea Actions!"
- name: Run a multi-line script
run: |
echo Add other actions as you wish...
echo Such as building your code, running tests, or deploying.