diff --git a/.devops/未命名项目.yml b/.devops/未命名项目.yml new file mode 100644 index 0000000..9a4186a --- /dev/null +++ b/.devops/未命名项目.yml @@ -0,0 +1,29 @@ +version: 2 +name: 未命名项目 +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: + - date + needs: + - start + - ref: shell_1 + name: shell + image: docker.jianmuhub.com/library/anolisos:8.6 + script: + - whoami + needs: + - shell_0 + - ref: end + name: 结束 + task: end + needs: + - shell_1 +