2025-10-16 17:33:57 +02:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
set -euo pipefail
|
|
|
|
|
|
|
|
|
|
# Preset for staging environment
|
|
|
|
|
export TAG="latest"
|
|
|
|
|
export IMAGE_REGISTRY="ghcr.io"
|
|
|
|
|
export OWNER="marcopedone"
|
2025-10-29 11:06:53 +01:00
|
|
|
export SERVICES="web backend"
|
2025-10-16 17:33:57 +02:00
|
|
|
export USERNAME="marcopedone"
|
|
|
|
|
export TOKEN="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"
|
|
|
|
|
export ENV_FILE=".env.marcopedone"
|
2025-10-23 15:16:42 +02:00
|
|
|
export PREFIX="marcopedone"
|
2025-10-16 17:33:57 +02:00
|
|
|
|
|
|
|
|
./build_and_push_ghcr.sh
|