This repository has been archived on 2024-06-05. You can view files and clone it, but cannot push or open issues or pull requests.
mdns-repeater-mikrotik/.woodpecker/build.yml

27 lines
675 B
YAML
Raw Normal View History

2023-06-08 14:03:48 +02:00
---
2023-11-07 15:36:33 +01:00
depends_on:
- lint
variables: # https://woodpecker-ci.org/docs/usage/advanced-usage
- &VERSION 'v1.0.${CI_PIPELINE_NUMBER}' # wird für die Docker-Tags verwendet
2023-06-10 11:09:29 +02:00
steps:
2023-11-07 15:36:33 +01:00
docker_build_and_push_selfhosted:
2024-02-07 15:14:27 +01:00
image: "woodpeckerci/plugin-docker-buildx:3.0.1"
2023-06-08 14:03:48 +02:00
privileged: true
settings:
dockerfile: Dockerfile
repo: registry.mgrote.net/mdns-repeater-mikrotik
registry: registry.mgrote.net
tags:
- *VERSION
2023-11-07 15:39:05 +01:00
- ${CI_COMMIT_SHA:0:8}
- ${CI_COMMIT_BRANCH}
2023-06-08 14:03:48 +02:00
- latest
2023-06-08 14:32:13 +02:00
platforms:
- linux/arm64
- linux/amd64
2024-02-06 20:17:24 +01:00
when:
- evaluate: 'CI_COMMIT_AUTHOR_EMAIL != "renovate@mgrote.net"'
2024-02-06 20:20:38 +01:00
...