blob: 6a84d1d94cf116110ee937d05dc6abdc3cbae9e4 [file] [log] [blame]
#!/bin/bash
# Copyright 2020 The Flutter Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
# Deploy a new flutter dashboard version to google cloud.
pushd app_dart > /dev/null
set -e
gcloud app deploy --project "$1" --version "version-$2" -q "$3" --no-stop-previous-version
popd > /dev/null