From 6c4f77b6faf8f2ea4dda38b1ba1652709f87238d Mon Sep 17 00:00:00 2001 From: Passthem Date: Sun, 8 Jun 2025 05:09:16 +0900 Subject: [PATCH] test1 --- .gitea/workflows/hello-world.yaml | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 .gitea/workflows/hello-world.yaml diff --git a/.gitea/workflows/hello-world.yaml b/.gitea/workflows/hello-world.yaml new file mode 100644 index 0000000..833be3e --- /dev/null +++ b/.gitea/workflows/hello-world.yaml @@ -0,0 +1,10 @@ +name: Hello World Gitea Action # 这个 Action 的名称 + +on: [push] # 指定 Action 触发的事件,这里是每次 push 到仓库时 + +jobs: + build: # 定义一个名为 build 的 job + runs-on: ubuntu-latest # 指定 job 运行的环境,这里使用最新的 Ubuntu 镜像 + steps: # 定义 job 中执行的步骤 + - name: Say Hello # 步骤的名称 + run: echo "Hello from Gitea Actions!" # 要执行的命令