buildimage/.woodpecker.yml
Tobias Schmidl abcb01e3d1
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
ci/woodpecker/tag/woodpecker Pipeline was successful
fix: push also to registry on tags
2023-09-22 08:50:30 +02:00

41 lines
882 B
YAML

# SPDX-FileCopyrightText: 2023 Tobias Schmidl
#
# SPDX-License-Identifier: AGPL-3.0-or-later
---
variables:
- &repo 'git.schmidl.dev/schtobia/buildimage'
- &registry 'git.schmidl.dev'
- &platforms 'linux/amd64, linux/arm64/v8'
steps:
docker-build:
image: woodpeckerci/plugin-docker-buildx
group: build
settings:
repo: *repo
registry: *registry
platforms: *platforms
dry_run: true
when:
branch:
exclude: [ master ]
event: push
publish-next-agent:
image: woodpeckerci/plugin-docker-buildx
group: build
secrets: [docker_username, docker_password]
settings:
repo: *repo
registry: *registry
platforms: *platforms
username:
from_secret: docker_username
password:
from_secret: docker_password
when:
event: [push, tag]
branch: master
...