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
|
2023-05-11 22:51:18 +01:00
|
|
|
arch: arm64
|
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
|