mirror of
https://github.com/openfrontio/OpenFrontIO.git
synced 2026-06-21 17:56:43 +00:00
3762b16009
## Description: Added the possibility to have an additional docker version tag in the `build.sh` script Added `latest` as an additional version tag when building and publishing a docker image for a new release The conditional in the github action is taken as is from the original docs example: https://docs.github.com/en/actions/reference/workflows-and-actions/expressions#example The conditional bash expression has been tested locally with mock data using a partial `test.sh` script containing only the affected lines and necessary variables for testing without the `--push` option. I confirm that the produced result is as expected with or without the new option provided ## Please complete the following: - [x] I have added screenshots for all UI updates - [x] I process any text displayed to the user through translateText() and I've added it to the en.json file - [x] I have added relevant tests to the test directory - [x] I confirm I have thoroughly tested these changes and take full responsibility for any bugs introduced ## Please put your Discord username so you can be contacted if a bug or regression is found: [fedot_compot](https://discord.com/users/298153303341137922)
108 lines
3.2 KiB
Bash
Executable File
108 lines
3.2 KiB
Bash
Executable File
#!/bin/bash
|
|
# build.sh - Build and upload Docker image to Docker Hub
|
|
# This script:
|
|
# 1. Builds and uploads the Docker image to Docker Hub with appropriate tag
|
|
# 2. Optionally saves container metadata to a file (if METADATA_FILE is provided as 3rd argument)
|
|
|
|
set -e # Exit immediately if a command exits with a non-zero status
|
|
|
|
# Parse command line arguments
|
|
DEPLOY_ENV="$1"
|
|
VERSION_TAG="$2"
|
|
VERSION_TXT="$3"
|
|
CHANGELOG_MD="$4"
|
|
METADATA_FILE="$5"
|
|
|
|
# Set default metadata file if not provided
|
|
if [ -z "$METADATA_FILE" ]; then
|
|
METADATA_FILE="/tmp/build-metadata-$RANDOM.json"
|
|
fi
|
|
|
|
# Check required arguments
|
|
if [ -z "$DEPLOY_ENV" ] || [ -z "$VERSION_TAG" ]; then
|
|
echo "Error: Please specify environment and version tag"
|
|
echo "Usage: $0 [prod|staging] [version_tag] [metadata_file]"
|
|
echo "Note: Provide metadata_file as third argument to save container metadata to a file"
|
|
exit 1
|
|
fi
|
|
|
|
# Validate environment argument
|
|
if [ "$DEPLOY_ENV" != "prod" ] && [ "$DEPLOY_ENV" != "staging" ]; then
|
|
echo "Error: First argument must be either 'prod' or 'staging'"
|
|
echo "Usage: $0 [prod|staging] [version_tag] [metadata_file]"
|
|
echo "Note: Provide metadata_file as third argument to save container metadata to a file"
|
|
exit 1
|
|
fi
|
|
|
|
print_header() {
|
|
echo "======================================================"
|
|
echo "🚀 ${1}"
|
|
echo "======================================================"
|
|
}
|
|
|
|
# Load common environment variables first
|
|
if [ -f .env ]; then
|
|
echo "Loading common configuration from .env file..."
|
|
set -o allexport
|
|
source .env
|
|
set +o allexport
|
|
fi
|
|
|
|
# Load environment-specific variables
|
|
if [ -f .env.$DEPLOY_ENV ]; then
|
|
echo "Loading $DEPLOY_ENV-specific configuration from .env.$DEPLOY_ENV file..."
|
|
set -o allexport
|
|
source .env.$DEPLOY_ENV
|
|
set +o allexport
|
|
fi
|
|
|
|
# Check required environment variables for build
|
|
if [ -z "$DOCKER_USERNAME" ] || [ -z "$DOCKER_REPO" ]; then
|
|
echo "Error: DOCKER_USERNAME or DOCKER_REPO not defined in .env file or environment"
|
|
exit 1
|
|
fi
|
|
|
|
DOCKER_IMAGE="${DOCKER_USERNAME}/${DOCKER_REPO}:${VERSION_TAG}"
|
|
|
|
# If ADDITIONAL_VERSION_TAG is provided ADDITIONAL_DOCKER_IMAGE will be set
|
|
# example usage: adding latest tag
|
|
if [ -n "$ADDITIONAL_VERSION_TAG" ]; then
|
|
ADDITIONAL_DOCKER_IMAGE="${DOCKER_USERNAME}/${DOCKER_REPO}:${ADDITIONAL_VERSION_TAG}"
|
|
fi
|
|
|
|
# Build and upload Docker image to Docker Hub
|
|
echo "Environment: ${DEPLOY_ENV}"
|
|
echo "Using version tag: $VERSION_TAG"
|
|
echo "Docker repository: $DOCKER_REPO"
|
|
echo "Metadata file: $METADATA_FILE"
|
|
|
|
# Get Git commit for build info
|
|
GIT_COMMIT=$(git rev-parse HEAD 2> /dev/null || echo "unknown")
|
|
echo "Git commit: $GIT_COMMIT"
|
|
|
|
if [ -n "$CHANGELOG_MD" ]; then
|
|
echo "$CHANGELOG_MD" > resources/changelog.md
|
|
fi
|
|
if [ -n "$VERSION_TXT" ]; then
|
|
echo "$VERSION_TXT" > resources/version.txt
|
|
fi
|
|
|
|
docker buildx build \
|
|
--platform linux/amd64 \
|
|
--build-arg GIT_COMMIT=$GIT_COMMIT \
|
|
--metadata-file $METADATA_FILE \
|
|
-t $DOCKER_IMAGE \
|
|
${ADDITIONAL_DOCKER_IMAGE:+-t "$ADDITIONAL_DOCKER_IMAGE"} \
|
|
--push \
|
|
.
|
|
|
|
if [ $? -ne 0 ]; then
|
|
echo "❌ Docker build failed."
|
|
exit 1
|
|
fi
|
|
|
|
echo "✅ Docker image built and pushed successfully."
|
|
echo "Image: $DOCKER_IMAGE"
|
|
|
|
print_header "BUILD COMPLETED SUCCESSFULLY ${DOCKER_IMAGE}"
|