drone-tech/.drone.yml

19 lines
230 B
YAML
Raw Normal View History

2023-04-25 19:01:44 +01:00
kind: pipeline
type: docker
name: hello-world
2023-04-25 19:20:50 +01:00
platform:
os: linux
arch: arm
2023-04-25 19:01:44 +01:00
trigger:
branch:
- master
event:
- push
steps:
- name: say-hello
2023-04-25 19:20:50 +01:00
image: alpine
2023-04-25 19:01:44 +01:00
commands:
2023-04-25 19:20:50 +01:00
- echo hello
- echo world