From 514bab17712ce73a5e7423a8091822e1f1152d2a Mon Sep 17 00:00:00 2001 From: Tony0410 Date: Thu, 18 Dec 2025 14:52:20 +0000 Subject: [PATCH] Add initial Gitea Actions workflow --- .gitea/workflows/demo.yaml | 13 +++++++++++++ 1 file changed, 13 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..2d739ab --- /dev/null +++ b/.gitea/workflows/demo.yaml @@ -0,0 +1,13 @@ +name: Hello Gitea Actions +on: [push] +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - name: Run a one-line script + run: echo "Hello, Gitea Actions!" + - name: Run a multi-line script + run: | + echo Add other actions as you wish... + echo Such as building your code, running tests, or deploying. \ No newline at end of file