Files
actions_test/.gitea/workflows/hello.yml
2025-12-23 17:14:16 +01:00

21 lines
314 B
YAML

name: Hello Gitea Actions
on:
push:
branches:
- main
jobs:
hello:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Make script executable
run: chmod +x hello.sh
- name: Run hello script
run: ./hello.sh