13 lines
326 B
Bash
13 lines
326 B
Bash
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
# Preset for staging environment
|
|
export TAG="latest"
|
|
export IMAGE_REGISTRY="ghcr.io"
|
|
export OWNER="marcopedone"
|
|
export USERNAME="marcopedone"
|
|
export TOKEN="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"
|
|
export ENV_FILE=".env.infoalloggi"
|
|
export PREFIX="infoalloggi"
|
|
|
|
./build_and_push_ghcr.sh
|