ci: use only latest and high-performance-latest tags for ai-assistant

This commit is contained in:
Tracewebstudio Dev 2026-04-16 21:23:22 +02:00
parent 92e2d42d5c
commit 748d5afd8e

View file

@ -3,20 +3,21 @@ when:
event: push
steps:
- name: login-registry
image: alpine:3.20
commands:
- echo "${REGISTRY_PASSWORD}" | docker login registry.nxtgauge.com -u "${REGISTRY_USERNAME}" --password-stdin
- name: build-and-push
image: docker:28-cli
volumes:
- /var/run/docker.sock:/var/run/docker.sock
environment:
REGISTRY_USERNAME:
image: woodpeckerci/plugin-kaniko:2.1.1
settings:
registry: registry.nxtgauge.com
repo: nxtgauge-ai-assistant
dockerfile: Dockerfile
tags:
- latest
- high-performance-latest
username:
from_secret: REGISTRY_USERNAME
REGISTRY_PASSWORD:
password:
from_secret: REGISTRY_PASSWORD
commands:
- docker build -t registry.nxtgauge.com/nxtgauge-ai-assistant:latest -f Dockerfile .
- docker push registry.nxtgauge.com/nxtgauge-ai-assistant:latest
insecure: true
insecure_pull: true
skip_tls_verify: true
platforms: linux/amd64
cache: false