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