ci: switch to buildx plugin (#153)

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

View File

@ -142,7 +142,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,
@ -155,7 +155,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,
@ -171,7 +171,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

@ -112,7 +112,7 @@ steps:
- ls -l dist/drone-github-comment
- name: dryrun
image: thegeeklab/drone-docker:19
image: thegeeklab/drone-docker-buildx:20
settings:
dockerfile: docker/Dockerfile.amd64
dry_run: true
@ -124,7 +124,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
@ -142,7 +142,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
@ -185,7 +185,7 @@ steps:
- ls -l dist/drone-github-comment
- name: dryrun
image: thegeeklab/drone-docker:19
image: thegeeklab/drone-docker-buildx:20
settings:
dockerfile: docker/Dockerfile.arm64
dry_run: true
@ -197,7 +197,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
@ -215,7 +215,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
@ -383,6 +383,6 @@ depends_on:
---
kind: signature
hmac: 55a73e91c6f78ff43b467d35977d0d60eef97d96c46eff4394cea404937272d7
hmac: 5a0a818ba8191d680b8967878a9077af607b6be0810dfc864a64b3da642e9e92
...