15 lines
226 B
YAML
15 lines
226 B
YAML
|
when:
|
||
|
- event: push
|
||
|
branch: "**"
|
||
|
matrix:
|
||
|
platform:
|
||
|
- linux/amd64
|
||
|
- linux/arm64
|
||
|
labels:
|
||
|
platform: ${platform}
|
||
|
steps:
|
||
|
- name: build
|
||
|
image: debian
|
||
|
commands:
|
||
|
- echo "This is the build step; okay"
|