Files
test/.gitea/workflows/hello.yml
Martin Kudlacek bd08bdf8ab
Some checks failed
Hello World / say_hello (push) Failing after 1s
WIP
2025-11-13 08:38:48 +01:00

18 lines
325 B
YAML

name: Hello World
on:
push:
branches: [ main ]
jobs:
say_hello:
runs-on: docker
steps:
- name: Manual Checkout
run: |
git clone $GITEA_SERVER_URL/$GITEA_REPOSITORY .
git checkout $GITEA_REF_NAME
- name: Say Hello
run: echo "Hello, world from Gitea Actions!"