From 059d0db5311a6e604959d4f5eb7ec147efc9a496 Mon Sep 17 00:00:00 2001 From: xiaohei <3440556848@qq.com> Date: Tue, 4 Feb 2025 18:56:51 +0800 Subject: [PATCH] hello actions --- .gitea/workflows/hello.yaml | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 .gitea/workflows/hello.yaml diff --git a/.gitea/workflows/hello.yaml b/.gitea/workflows/hello.yaml new file mode 100644 index 0000000..a6edfb0 --- /dev/null +++ b/.gitea/workflows/hello.yaml @@ -0,0 +1,11 @@ +name: Hello Gitea Actions +on: [push] + +jobs: + hello: + runs-on: ubuntu-latest + steps: + - name: 输出问候语 + run: | + echo "hello, Gitea Actions!" + echo "当前时间是: $(date)" \ No newline at end of file