···77 source-ref:
88 description: "The source branch from the Tangled monorepo to build against. Defaults to latest tagged release."
99 type: string
1010- default: "v1.11.0-alpha"
1010+ default: "v1.13.0-alpha"
1111 build-type:
1212 description: "The type of build to perform (e.g., 'production' for tagged releases, 'nightly' for nightly builds from the main branch and 'weekly' for weekly builds)."
1313 options: ["production", "nightly", "weekly", "merge_request"]
+6
bin/build
···3030 --build-arg DEPLOY_IMAGE=$DEPLOY_IMAGE \
3131 --build-arg BUILDER_IMAGE=$BUILDER_IMAGE \
3232 .
3333+3434+BUILD_STATUS=$?
3535+if [[ "${BUILD_STATUS}" != "0" ]]; then
3636+ echo "error: Something gone wrong while building the image, see logs above for context."
3737+ exit 1
3838+fi
33393440if [[ $CI == "true" || "$FF_PUSH_LOCAL_BUILDS" == "true" ]]; then
3541 echo "Tagging $IMAGE_NAME:build-$TIMESTAMP for publishing"