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
10 lines
184 B
Bash
Executable File
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"
|