- build-cli.yml: comment out cache_from/cache_to to avoid BuildKit "short read" errors from corrupted registry cache - default.yml: add git pull --rebase before push in cleanup-and-push to handle remote having newer commits
33 lines
902 B
YAML
33 lines
902 B
YAML
when:
|
|
event: push
|
|
|
|
clone:
|
|
git:
|
|
image: woodpeckerci/plugin-git
|
|
settings:
|
|
attempts: 5
|
|
backoff: 10s
|
|
|
|
steps:
|
|
- name: build-image
|
|
image: woodpeckerci/plugin-docker-buildx
|
|
settings:
|
|
username: "viktorbarzin"
|
|
password:
|
|
from_secret: dockerhub-pat
|
|
repo:
|
|
- viktorbarzin/infra
|
|
- registry.viktorbarzin.me:5050/infra
|
|
logins:
|
|
- registry: https://index.docker.io/v1/
|
|
username: viktorbarzin
|
|
password:
|
|
from_secret: dockerhub-pat
|
|
dockerfile: cli/Dockerfile
|
|
context: cli
|
|
auto_tag: true
|
|
# cache_from/cache_to removed: registry cache corruption causes
|
|
# "short read: expected 32 bytes" BuildKit errors. Inline cache
|
|
# will be re-populated once a clean image is pushed.
|
|
# cache_from: "registry.viktorbarzin.me:5050/infra:latest"
|
|
# cache_to: "type=inline"
|