diff --git a/.gitea/workflows/helloworld.yaml b/.gitea/workflows/helloworld.yaml new file mode 100644 index 0000000..af10006 --- /dev/null +++ b/.gitea/workflows/helloworld.yaml @@ -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