mirror of
https://github.com/flutter/flutter.git
synced 2026-02-20 02:29:02 +08:00
* f264d6c Allow plugins that don't support the Android platform * 55f0bdc Fix docker tag during upload as well
10 lines
253 B
Bash
Executable File
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"
|