Some checks failed
continuous-integration/drone/push Build encountered an error
23 lines
456 B
YAML
23 lines
456 B
YAML
kind: pipeline
|
|
type: docker
|
|
name: main-automated-pipeline
|
|
|
|
trigger:
|
|
event:
|
|
- push
|
|
- promote
|
|
- manual
|
|
|
|
steps:
|
|
- name: print-auto-run
|
|
image: alpine:latest
|
|
when:
|
|
event: push
|
|
branch: main
|
|
commands:
|
|
- echo ===================================
|
|
- echo 这是自动运行的流水线
|
|
- echo 自动运行
|
|
- echo "仓库唯一标识UID: {{ .repo.uid }}"
|
|
- echo ===================================
|