From f9621e99e2cdfb07a0bc28db18432fe9f2330294 Mon Sep 17 00:00:00 2001 From: Oleksandr Bezdieniezhnykh Date: Thu, 9 Apr 2026 13:27:59 +0300 Subject: [PATCH] Refactor tile handling and enhance CORS settings --- .woodpecker.yml | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 .woodpecker.yml diff --git a/.woodpecker.yml b/.woodpecker.yml new file mode 100644 index 0000000..9b2a0a5 --- /dev/null +++ b/.woodpecker.yml @@ -0,0 +1,25 @@ +when: + branch: [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