Some checks reported errors
continuous-integration/drone Build encountered an error
29 lines
434 B
YAML
29 lines
434 B
YAML
kind: pipeline
|
|
type: docker
|
|
name: salt-docker-master
|
|
|
|
platform:
|
|
os: linux
|
|
arch: arm64
|
|
|
|
steps:
|
|
- name: build
|
|
image: docker.io/docker
|
|
commands:
|
|
- docker build .
|
|
volumes:
|
|
- /var/run/podman/podman.sock:/var/run/docker.sock
|
|
- name: publish
|
|
image: plugins/docker
|
|
settings:
|
|
repo: cr.wks/salt
|
|
registry: cr.wks
|
|
insecure: true
|
|
debug: true
|
|
tags:
|
|
- latest
|
|
when:
|
|
event:
|
|
- push
|
|
|