From 5f8d28077ee541cdfae5358389af2f9d5949bf66 Mon Sep 17 00:00:00 2001 From: adminxd Date: Fri, 27 Feb 2026 15:18:00 +0300 Subject: [PATCH] test: workflow --- .gitea/workflows/publish.yaml | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 .gitea/workflows/publish.yaml diff --git a/.gitea/workflows/publish.yaml b/.gitea/workflows/publish.yaml new file mode 100644 index 0000000..4fe924d --- /dev/null +++ b/.gitea/workflows/publish.yaml @@ -0,0 +1,12 @@ +name: Gitea Actions Demo +run-name: ${{ gitea.actor }} is testing out Gitea Actions +on: [push] +jobs: + explore-gitea-actions: + runs-on: general-xd + steps: + - name: Checkout code + uses: actions/checkout@v4 + - name: List directory contents + run: ls -la + - run: echo "The job was automatically triggered by a ${{ gitea.event_name }} event."