chore: add deploy.sh — build amd64 image and push to registry
Some checks failed
lint / lint (push) Has been cancelled
test / integration (push) Has been cancelled
test / unit (push) Has been cancelled
lint / lint (pull_request) Failing after 5m4s
test / unit (pull_request) Successful in 16m39s
test / integration (pull_request) Failing after 16m56s

This commit is contained in:
2026-05-14 15:46:53 +02:00
parent cc9658975f
commit 4890501512

9
deploy.sh Executable file
View File

@@ -0,0 +1,9 @@
#!/usr/bin/env bash
set -euo pipefail
IMAGE="registry.gabrielkaszewski.dev/thoughts:latest"
docker buildx build --platform linux/amd64 \
-t "$IMAGE" --push .
echo "pushed $IMAGE"