Created
December 16, 2018 00:39
-
-
Save chaseholdren/30340a8b14799addf60db999e79ab6c7 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"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