Files
satellite-provider/.woodpecker.yml
T
Oleksandr Bezdieniezhnykh 1163612e85 update woodpecker add dev branch
Made-with: Cursor
2026-04-11 20:40:33 +03:00

26 lines
488 B
YAML

when:
branch: [dev, stage, main]
event: push
matrix:
include:
- PLATFORM: linux/arm64
TAG: arm
- PLATFORM: linux/amd64
TAG: amd64
labels:
platform: ${PLATFORM}
steps:
- name: build-and-push
image: plugins/docker
settings:
dockerfile: SatelliteProvider.Api/Dockerfile
context: .
repo: registry:5000/satellite-provider
tags:
- "${CI_COMMIT_BRANCH}-${TAG}"
- "${CI_COMMIT_SHA:0:8}-${TAG}"
insecure: true