refactor: use buildx for multiarch container builds (#75)
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Robert Kaussow 2023-01-15 17:09:01 +01:00
parent ece9346fd3
commit 48f7af1d75
1 changed files with 4 additions and 9 deletions

View File

@ -30,11 +30,10 @@ steps:
- name: dryrun
image: thegeeklab/drone-docker-buildx:20
settings:
build_args:
- BUILD_VERSION=${DRONE_TAG%-*}
dockerfile: Dockerfile
dry_run: true
repo: thegeeklab/${DRONE_REPO_NAME}
provenance: false
when:
ref:
- refs/pull/**
@ -72,14 +71,13 @@ steps:
- name: publish-dockerhub
image: thegeeklab/drone-docker-buildx:20
settings:
build_args:
- BUILD_VERSION=${DRONE_TAG%-*}
dockerfile: Dockerfile
password:
from_secret: docker_password
repo: thegeeklab/${DRONE_REPO_NAME}
username:
from_secret: docker_username
provenance: false
when:
ref:
- refs/heads/main
@ -90,8 +88,6 @@ steps:
- name: publish-quay
image: thegeeklab/drone-docker-buildx:20
settings:
build_args:
- BUILD_VERSION=${DRONE_TAG%-*}
dockerfile: Dockerfile
password:
from_secret: quay_password
@ -99,6 +95,7 @@ steps:
repo: quay.io/thegeeklab/${DRONE_REPO_NAME}
username:
from_secret: quay_username
provenance: false
when:
ref:
- refs/heads/main
@ -141,7 +138,6 @@ platform:
steps:
- name: pushrm-dockerhub
pull: always
image: chko/docker-pushrm:1
environment:
DOCKER_PASS:
@ -156,7 +152,6 @@ steps:
- success
- name: pushrm-quay
pull: always
image: chko/docker-pushrm:1
environment:
APIKEY__QUAY_IO:
@ -197,6 +192,6 @@ depends_on:
---
kind: signature
hmac: c4492171d727fdfca36112df25603b4d160afde38eddb79f21cb7c723682df38
hmac: 63df15d4b40f20fdf20b7b7dfbe17ddc573a0593d358785e478fb8c18a17d1bf
...