forked from xxq250/java_ci_example
28 lines
419 B
YAML
28 lines
419 B
YAML
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
|
|
|