From a0c34c3f9085bd49b368769826a074625921d234 Mon Sep 17 00:00:00 2001 From: zeshan Date: Thu, 5 Mar 2026 22:31:29 +0000 Subject: [PATCH] actino --- .gitea/workflows/helloworld.yaml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .gitea/workflows/helloworld.yaml 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