blob: 336b5d2835b0679427b8d6599ec8acdd830fa9bc [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
gcloud app deploy --project "$1" --version "version-$2" --no-promote --no-stop-previous-version
popd > /dev/null