29 lines
772 B
YAML
29 lines
772 B
YAML
matrix:
|
|
DEBIAN_VERSION:
|
|
- bullseye-backports
|
|
- bookworm-backports
|
|
|
|
steps:
|
|
build-os:
|
|
pull: true
|
|
image: woodpeckerci/plugin-docker-buildx
|
|
settings:
|
|
debug: "true"
|
|
pull: true
|
|
repo: "gitea.simcop2387.info/simcop2387/perl-os-base"
|
|
dockerfile: "os-base/Dockerfile"
|
|
context: "os-base/"
|
|
auto_tag: "false"
|
|
build_args:
|
|
- "IMAGE_VERSION=${DEBIAN_VERSION}"
|
|
- "OTHERARG=foo"
|
|
# default_tag: "debian-${DEBIAN_VERSION}"
|
|
tags:
|
|
- "debian-${DEBIAN_VERSION}-${CI_PIPELINE_CREATED}"
|
|
- "debian-${DEBIAN_VERSION}"
|
|
logins:
|
|
- registry: https://gitea.simcop2387.info/
|
|
username: simcop2387
|
|
password:
|
|
from_secret: gitea_docker_token
|
|
|