From 65d0bcaa2336bf1b9c80d5bc4eb051b2e22c6618 Mon Sep 17 00:00:00 2001 From: Tomasz Torcz Date: Mon, 10 Feb 2025 19:55:27 +0100 Subject: [PATCH] yay! demo --- .gitea/workflows/demo.yaml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .gitea/workflows/demo.yaml diff --git a/.gitea/workflows/demo.yaml b/.gitea/workflows/demo.yaml new file mode 100644 index 0000000..ecb9da4 --- /dev/null +++ b/.gitea/workflows/demo.yaml @@ -0,0 +1,17 @@ +name: Gitea Actions Demo +run-name: ${{ gitea.actor }} is testing actions +on: [push] + +jobs: + Explore-Gitea-Actions: + runs-on: ubuntu-latest + steps: + - run: echo "trigger event ${{ gitea.event_name }}, runner ${{ runner.os }}" + - run: echo "branch ${{ gitea.ref }}, repo ${{ gitea.repository }}" + - name: Get the code + uses: actions/checkout@v4 + - name: list files + run: | + ls -l ${{ gitea.workspace }} + - run: echo "status $${ job.status }}" +