Music-Samples/.drone.yml
DataHoarder 348ab1a84c
Some checks failed
continuous-integration/drone/push Build is failing
Build Dockerfile image
2022-08-01 21:42:41 +02:00

44 lines
863 B
YAML

kind: pipeline
type: docker
name: docker-amd64
platform:
os: linux
arch: amd64
steps:
- name: docker
image: plugins/docker
settings:
username:
from_secret: git_username
password:
from_secret: git_password
registry: git.gammaspectra.live
repo: git.gammaspectra.live/s.o.n.g/music-samples
tags: latest
custom_dns: 8.8.8.8
squash: true
force_tag: true
---
kind: pipeline
type: docker
name: docker-arm64
platform:
os: linux
arch: arm64
steps:
- name: docker
image: plugins/docker
settings:
username:
from_secret: git_username
password:
from_secret: git_password
registry: git.gammaspectra.live
repo: git.gammaspectra.live/s.o.n.g/music-samples
tags: latest
custom_dns: 8.8.8.8
squash: true
force_tag: true
...