mirror of
https://github.com/encounter/flutter.git
synced 2026-07-10 03:18:48 -07:00
fb60324e6f
*f264d6cAllow plugins that don't support the Android platform *55f0bdcFix 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"
|