45 lines
1.6 KiB
Bash
Executable File
45 lines
1.6 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
# fail asap
|
|
set -e
|
|
|
|
# Check if an argument was provided
|
|
if [ $# -eq 0 ]; then
|
|
echo "No arguments provided"
|
|
echo "Usage: scripts/publish-debug-image.sh 20230826-1 true"
|
|
echo ""
|
|
echo "Last argument specifies whether we should have a debug build as opposed to release build."
|
|
exit 1
|
|
fi
|
|
|
|
DEBUG=$2
|
|
if [ "$DEBUG" = "true" ]; then
|
|
echo "[profile.release]" >> Cargo.toml
|
|
echo "debug = true" >> Cargo.toml
|
|
fi
|
|
|
|
TAG=$1-debug
|
|
echo "Building images, will tag for ghcr.io with $TAG!"
|
|
docker build -t ghcr.io/stoatchat/base:latest -f Dockerfile.useCurrentArch .
|
|
docker build -t ghcr.io/stoatchat/server:$TAG - < crates/delta/Dockerfile
|
|
docker build -t ghcr.io/stoatchat/bonfire:$TAG - < crates/bonfire/Dockerfile
|
|
docker build -t ghcr.io/stoatchat/autumn:$TAG - < crates/services/autumn/Dockerfile
|
|
docker build -t ghcr.io/stoatchat/january:$TAG - < crates/services/january/Dockerfile
|
|
docker build -t ghcr.io/stoatchat/gifbox:$TAG - < crates/services/gifbox/Dockerfile
|
|
docker build -t ghcr.io/stoatchat/crond:$TAG - < crates/daemons/crond/Dockerfile
|
|
docker build -t ghcr.io/stoatchat/pushd:$TAG - < crates/daemons/pushd/Dockerfile
|
|
docker build -t ghcr.io/stoatchat/voice-ingress:$TAG - < crates/daemons/voice-ingress/Dockerfile
|
|
|
|
if [ "$DEBUG" = "true" ]; then
|
|
git restore Cargo.toml
|
|
fi
|
|
|
|
docker push ghcr.io/stoatchat/server:$TAG
|
|
docker push ghcr.io/stoatchat/bonfire:$TAG
|
|
docker push ghcr.io/stoatchat/autumn:$TAG
|
|
docker push ghcr.io/stoatchat/january:$TAG
|
|
docker push ghcr.io/stoatchat/gifbox:$TAG
|
|
docker push ghcr.io/stoatchat/crond:$TAG
|
|
docker push ghcr.io/stoatchat/pushd:$TAG
|
|
docker push ghcr.io/stoatchat/voice-ingress:$TAG
|