20f13b3e36
The upstream woodpeckerci/plugin-docker-buildx image does not trust the internal CA, so buildx pushes to artifactapi fail on TLS verification. Swap it for the CA-baked custom image published in the docker-internal repo, in both the tag push (docker.yaml) and PR dry-run (build.yaml) steps.
14 lines
347 B
YAML
14 lines
347 B
YAML
when:
|
|
- event: tag
|
|
ref: refs/tags/v*
|
|
|
|
steps:
|
|
- name: docker
|
|
image: artifactapi.k8s.syd1.au.unkin.net/docker-internal/plugin-docker-buildx:latest
|
|
settings:
|
|
registry: artifactapi.k8s.syd1.au.unkin.net
|
|
repo: artifactapi.k8s.syd1.au.unkin.net/docker-internal/age-api
|
|
tags:
|
|
- ${CI_COMMIT_TAG}
|
|
- latest
|