Skip to content

Instantly share code, notes, and snippets.

@chaseholdren
Created December 16, 2018 00:39
Show Gist options
  • Save chaseholdren/30340a8b14799addf60db999e79ab6c7 to your computer and use it in GitHub Desktop.
Save chaseholdren/30340a8b14799addf60db999e79ab6c7 to your computer and use it in GitHub Desktop.
{
"steps": [
{
"name": "gcr.io/cloud-builders/npm",
"args": [
"install"
]
},
{
"name": "gcr.io/cloud-builders/npm",
"args": [
"test"
]
},
{
"name": "gcr.io/cloud-builders/npm",
"args": [
"run",
"build"
]
},
{
"name": "gcr.io/$PROJECT_ID/firebase",
"args": [
"deploy",
"-P",
"$PROJECT_ID",
"--only",
"hosting",
"--token",
"$_FIREBASE_DEPLOY_TOKEN",
],
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment