diff --git a/.devops/test.yml b/.devops/test.yml new file mode 100644 index 0000000..f48a559 --- /dev/null +++ b/.devops/test.yml @@ -0,0 +1,22 @@ +version: 2 +name: test +description: "" +global: + concurrent: 1 +workflow: + - ref: start + name: 开始 + task: start + - ref: shell_0 + name: shell + image: docker.jianmuhub.com/library/alpine:3.17.0 + script: + - echo 'Hello GitLink' + needs: + - start + - ref: end + name: 结束 + task: end + needs: + - shell_0 +