diff --git a/cloud_build/deploy.yaml b/cloud_build/deploy.yaml new file mode 100644 index 0000000000..ee38730af7 --- /dev/null +++ b/cloud_build/deploy.yaml @@ -0,0 +1,19 @@ +steps: + - name: gcr.io/cloud-builders/git + args: ['submodule', 'update', '--init', '--recursive'] + - name: gcr.io/cloud-builders/docker + entrypoint: '/bin/bash' + args: + - '-c' + - |- + set -e + echo "Building the website using a makefile..." + make build + - name: gcr.io/flutter-dev-230821/firebase-ghcli + entrypoint: '/bin/bash' + args: + - '-c' + - |- + firebase deploy --project=flutter-website-staging-349021 --only=hosting +options: + logging: CLOUD_LOGGING_ONLY