ci: push images to artifactapi registry instead of gitea
ci/woodpecker/pr/build Pipeline was successful

Hard switch of the docker push target from the Gitea registry to the
artifactapi local docker registry (docker-internal); the Gitea VM and its
registry are being retired. Drops the droneci/DRONECI_PASSWORD creds since
artifactapi accepts unauthenticated in-cluster pushes. Also repoints the Makefile build/rmi tags.

Claude-Session: https://claude.ai/code/session_015ur3i7D2azsMAWTSVABApv
This commit is contained in:
2026-07-30 00:34:59 +10:00
parent 5dc94f9285
commit added9ff0b
3 changed files with 5 additions and 8 deletions
+2 -2
View File
@@ -3,10 +3,10 @@
VERSION ?= $(shell git describe --tags --always --dirty 2>/dev/null || echo "0.0.0-dev")
build:
docker build -t git.unkin.net/unkin/agent-base:$(VERSION) .
docker build -t artifactapi.k8s.syd1.au.unkin.net/docker-internal/agent-base:$(VERSION) .
clean:
docker rmi git.unkin.net/unkin/agent-base:$(VERSION) 2>/dev/null || true
docker rmi artifactapi.k8s.syd1.au.unkin.net/docker-internal/agent-base:$(VERSION) 2>/dev/null || true
_LATEST := $(shell git tag --sort=-v:refname | grep -E '^v[0-9]+\.[0-9]+\.[0-9]+$$' | head -1)
_BASE := $(if $(_LATEST),$(_LATEST),v0.0.0)