mirror of
https://code.lenaisten.de/Lenaisten/advent22.git
synced 2026-02-25 10:30:16 +00:00
23 lines
549 B
Text
23 lines
549 B
Text
|
|
#!/bin/bash
|
||
|
|
|
||
|
|
script="$( readlink -f "${0}" )"
|
||
|
|
script_dir="$( dirname "${script}" )"
|
||
|
|
|
||
|
|
# shellcheck disable=SC1091
|
||
|
|
. "${script_dir}/check_version"
|
||
|
|
|
||
|
|
# vars defined in `check_version` script
|
||
|
|
# shellcheck disable=SC2154
|
||
|
|
if [ "${git_status}" = "releasing" ] || [ "${git_status}" = "released" ]; then
|
||
|
|
# shellcheck disable=SC2154
|
||
|
|
image_tag="${git_version}"
|
||
|
|
else
|
||
|
|
image_tag="latest"
|
||
|
|
fi
|
||
|
|
|
||
|
|
docker buildx build \
|
||
|
|
--pull --push \
|
||
|
|
--tag "code.lenaisten.de/lenaisten/advent22:${image_tag}" \
|
||
|
|
--platform "linux/amd64" \
|
||
|
|
"${script_dir}/.."
|