Stable version v0.7.1

This release is dedicated to the board game Pandemic, for teaching us
relevant survival skills like how to stay inside and play board games.
This commit is contained in:
Vidar Holen
2020-04-04 17:14:02 -07:00
parent bd717c9d1b
commit f7547c9a5a
5 changed files with 13 additions and 5 deletions

View File

@@ -2,6 +2,12 @@
# This script builds and deploys multi-architecture docker images from the
# binaries previously built and deployed to GCS by the Travis pipeline.
if [[ "$TRAVIS_SECURE_ENV_VARS" != "true" ]]
then
echo >&2 "Missing TRAVIS_SECURE_ENV_VARS. Skipping Docker builds."
exit 0
fi
function multi_arch_docker::install_docker_buildx() {
# Install up-to-date version of docker, with buildx support.
local -r docker_apt_repo='https://download.docker.com/linux/ubuntu'