Files
thoughts/deploy.sh
Gabriel Kaszewski 4890501512
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
chore: add deploy.sh — build amd64 image and push to registry
2026-05-14 15:46:53 +02:00

10 lines
184 B
Bash
Executable File

#!/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"