Build by github actions (#70)

* BUILD_IMAGE from environment vairables has precedence.

* add workflow.

* trigger actions.
This commit is contained in:
Miroslav Šedivý
2021-06-13 14:13:19 +02:00
committed by GitHub
parent 8612286c98
commit 1800d077d8
2 changed files with 89 additions and 0 deletions

View File

@ -3,6 +3,12 @@ cd "$(dirname "$0")"
BASE="${PWD}/../"
# BUILD_IMAGE from environment vairables has precedence
if [ ! -z "${BUILD_IMAGE}" ]
then
ENV_BUILD_IMAGE="${BUILD_IMAGE}"
fi
if [ -f ".env.default" ]
then
export $(cat .env.default | sed 's/#.*//g' | xargs)
@ -13,6 +19,13 @@ then
export $(cat .env | sed 's/#.*//g' | xargs)
fi
# BUILD_IMAGE from environment vairables has precedence
if [ ! -z "${ENV_BUILD_IMAGE}" ]
then
BUILD_IMAGE="${ENV_BUILD_IMAGE}"
unset ENV_BUILD_IMAGE
fi
if [ -z "${1}" ] && [ ! -z "${SERVER_TAG}" ]
then
./build base