All checks were successful
continuous-integration/drone/push Build is passing
19 lines
232 B
YAML
19 lines
232 B
YAML
kind: pipeline
|
|
type: docker
|
|
name: hello-world
|
|
platform:
|
|
os: linux
|
|
arch: arm64
|
|
|
|
trigger:
|
|
branch:
|
|
- master
|
|
event:
|
|
- push
|
|
|
|
steps:
|
|
- name: say-hello
|
|
image: alpine
|
|
commands:
|
|
- echo hello
|
|
- echo world |