ci: switch to buildx plugin (#61)

This commit is contained in:
Robert Kaussow 2023-01-08 15:44:58 +01:00 committed by GitHub
parent 1ce872baa3
commit 0203f9a488
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 10 additions and 10 deletions

View File

@ -143,7 +143,7 @@ local PipelineBuildContainer(arch='amd64') = {
},
{
name: 'dryrun',
image: 'thegeeklab/drone-docker:19',
image: 'thegeeklab/drone-docker-buildx:20',
settings: {
dry_run: true,
dockerfile: 'docker/Dockerfile.' + arch,
@ -156,7 +156,7 @@ local PipelineBuildContainer(arch='amd64') = {
},
{
name: 'publish-dockerhub',
image: 'thegeeklab/drone-docker:19',
image: 'thegeeklab/drone-docker-buildx:20',
settings: {
auto_tag: true,
auto_tag_suffix: arch,
@ -172,7 +172,7 @@ local PipelineBuildContainer(arch='amd64') = {
},
{
name: 'publish-quay',
image: 'thegeeklab/drone-docker:19',
image: 'thegeeklab/drone-docker-buildx:20',
settings: {
auto_tag: true,
auto_tag_suffix: arch,

View File

@ -113,7 +113,7 @@ steps:
- ls -l dist/drone-s3-sync
- name: dryrun
image: thegeeklab/drone-docker:19
image: thegeeklab/drone-docker-buildx:20
settings:
dockerfile: docker/Dockerfile.amd64
dry_run: true
@ -125,7 +125,7 @@ steps:
- build
- name: publish-dockerhub
image: thegeeklab/drone-docker:19
image: thegeeklab/drone-docker-buildx:20
settings:
auto_tag: true
auto_tag_suffix: amd64
@ -143,7 +143,7 @@ steps:
- dryrun
- name: publish-quay
image: thegeeklab/drone-docker:19
image: thegeeklab/drone-docker-buildx:20
settings:
auto_tag: true
auto_tag_suffix: amd64
@ -186,7 +186,7 @@ steps:
- ls -l dist/drone-s3-sync
- name: dryrun
image: thegeeklab/drone-docker:19
image: thegeeklab/drone-docker-buildx:20
settings:
dockerfile: docker/Dockerfile.arm64
dry_run: true
@ -198,7 +198,7 @@ steps:
- build
- name: publish-dockerhub
image: thegeeklab/drone-docker:19
image: thegeeklab/drone-docker-buildx:20
settings:
auto_tag: true
auto_tag_suffix: arm64
@ -216,7 +216,7 @@ steps:
- dryrun
- name: publish-quay
image: thegeeklab/drone-docker:19
image: thegeeklab/drone-docker-buildx:20
settings:
auto_tag: true
auto_tag_suffix: arm64
@ -384,6 +384,6 @@ depends_on:
---
kind: signature
hmac: 23cbe0b94d4ce0000b2853062c38af9b47f4bfc0779b8d7d3cdff47d76f33888
hmac: 655db420fdf7a9dde23688e967a8ae3b8c7859804091376bacd4662f954eddb7
...