Todd Volkert fb60324e6f
v1.12.13+hotfix.4 cherry-picks (#46632)
* f264d6c Allow plugins that don't support the Android platform
* 55f0bdc Fix docker tag during upload as well
2019-12-09 15:58:15 -08:00

10 lines
253 B
Bash
Executable File

#!/bin/bash
TAG="${CIRRUS_TAG:-latest}"
# Convert "+" to "-" to make hotfix tags legal Docker tag names.
# See https://docs.docker.com/engine/reference/commandline/tag/
TAG=${TAG/+/-}
sudo docker push "gcr.io/flutter-cirrus/build-flutter-image:$TAG"