actino
All checks were successful
Gitea Actions Demo / Hello-World-Check (push) Successful in 0s

This commit is contained in:
2026-03-05 22:31:29 +00:00
parent e6d9d9fc43
commit a0c34c3f90

View File

@@ -0,0 +1,22 @@
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)"
- name: List Directory
run: ls -la