dhcp-helper/.woodpecker.yaml

20 lines
590 B
YAML
Raw Normal View History

2024-07-30 12:41:14 +02:00
steps:
- name: Build and Publish Docker Image
when:
- branch: main
event: push
- event: tag
image: woodpeckerci/plugin-docker-buildx
settings:
platforms: linux/amd64,linux/arm64
repo: ${CI_REG_HOST}:${CI_REG_PORT}/${CI_REPO_OWNER}/${CI_REPO_NAME}
tags: latest
registry: http://${CI_REG_HOST}:${CI_REG_PORT}
insecure: true
buildkit_config: "[registry.\"${CI_REG_HOST}:${CI_REG_PORT}\"]\n http = true\n insecure = true"
username:
from_secret: CI_REG_USER
password:
from_secret: CI_REG_TOKEN
2024-07-30 17:39:19 +02:00