container-pre-commit/.woodpecker.yaml

33 lines
722 B
YAML
Raw Normal View History

when:
path: "*Dockerfile*"
steps:
2023-09-21 17:08:31 +02:00
build-main:
when:
branch: main
image: woodpeckerci/plugin-docker-buildx:2.2.1
pull: true
settings:
platforms: linux/amd64
registry: ${CI_FORGE_URL}
username: WoodpeckerCI
password:
from_secret: gitea_token
2023-09-21 17:08:31 +02:00
repo: git.verdigado.com/${CI_REPO,,}
tag: "latest"
2023-09-21 17:08:31 +02:00
build-branch:
when:
branch:
2023-09-22 14:55:28 +02:00
exclude: ["main"]
image: woodpeckerci/plugin-docker-buildx:2.2.1
2023-09-21 17:08:31 +02:00
pull: true
settings:
platforms: linux/amd64
registry: ${CI_FORGE_URL}
username: WoodpeckerCI
password:
from_secret: gitea_token
repo: git.verdigado.com/${CI_REPO,,}
tag: ${CI_COMMIT_BRANCH}