Files
hurricane/.gitea/workflows/helloworld.yaml
zeshan 8674550fe5
All checks were successful
Gitea Actions Demo / Hello-World-Check (push) Successful in 40s
update
2026-03-05 22:35:31 +00:00

25 lines
682 B
YAML

name: Gitea Actions Demo
run-name: ${{ github.actor }} is testing the Host Runner 🚀
on: [push]
jobs:
Hello-World-Check:
# IMPORTANT: This must match the label you registered (e.g., linux_amd64)
runs-on: ubuntu-de
steps:
- name: Display Welcome Message
run: |
echo "Hello World from Gitea Actions!"
echo "This job is running directly on the host machine."
- name: Check Environment
run: |
echo "Current User: $(whoami)"
echo "Hostname: $(hostname)"
echo "Uptime: $(uptime -p)"
cd /root/docker
./backup-and-update.sh
- name: List Directory
run: ls -la