From cb31f98822e1669294e67554cd731edec2fba691 Mon Sep 17 00:00:00 2001 From: Tracewebstudio Dev Date: Wed, 15 Apr 2026 18:24:05 +0200 Subject: [PATCH] ci: add woodpecker.yml for registry build and push --- .woodpecker.yml | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 .woodpecker.yml diff --git a/.woodpecker.yml b/.woodpecker.yml new file mode 100644 index 0000000..6459a73 --- /dev/null +++ b/.woodpecker.yml @@ -0,0 +1,24 @@ +when: + branch: [main, high-performance] + event: push + +steps: + - name: build-and-push + image: woodpeckerci/plugin-kaniko:2.1.1 + settings: + registry: registry.nxtgauge.com + repo: nxtgauge-ai-assistant + dockerfile: Dockerfile + tags: + - ${CI_COMMIT_SHA} + - latest + - high-performance-latest + username: + from_secret: REGISTRY_USERNAME + password: + from_secret: REGISTRY_PASSWORD + insecure: true + insecure_pull: true + skip_tls_verify: true + platforms: linux/amd64 + cache: false