feat: .devops/Hello Word.yml
continuous-integration/drone/push Build is passing Details

This commit is contained in:
xxq250 2022-08-16 16:55:11 +08:00 committed by jianmu
parent 18f37c1874
commit 1dfd66e6e2
1 changed files with 27 additions and 0 deletions

27
.devops/Hello Word.yml Normal file
View File

@ -0,0 +1,27 @@
version: 2
name: Hello Word
description: hello jianmu
global:
concurrent: false
trigger:
webhook: gitlink@1.0.0
event:
- ref: push
ruleset-operator: AND
workflow:
- ref: start
name: 开始
task: start
- ref: shell_0
name: shell
image: ubuntu:22.10
script:
- echo "hello word"
needs:
- start
- ref: end
name: 结束
task: end
needs:
- shell_0