mirror of
https://github.com/rowyio/rowy.git
synced 2025-12-15 19:27:49 +01:00
38 lines
767 B
YAML
38 lines
767 B
YAML
steps:
|
|
- name: node:10.17.0
|
|
entrypoint: yarn
|
|
args: ["install"]
|
|
- name: node:10.17.0
|
|
entrypoint: yarn
|
|
args:
|
|
- env
|
|
- "${_PROJECT_ID}"
|
|
- "${_FIREBASE_WEB_API_KEY}"
|
|
- "${_ALGOLIA_APP_ID}"
|
|
- "${_ALGOLIA_APP_KEY}"
|
|
- name: node:10.17.0
|
|
entrypoint: yarn
|
|
args: ["build"]
|
|
- name: node:10.17.0
|
|
entrypoint: yarn
|
|
args:
|
|
- "target"
|
|
- "${_HOSTING_TARGET}"
|
|
- --project
|
|
- "${_PROJECT_ID}"
|
|
- name: node:10.17.0
|
|
entrypoint: yarn
|
|
args:
|
|
- deploy
|
|
- --project
|
|
- "${_PROJECT_ID}"
|
|
- --debug
|
|
- --token
|
|
- "${_FIREBASE_TOKEN}"
|
|
- --only
|
|
- hosting
|
|
substitutions:
|
|
_PROJECT_ID: "project-id" # default value
|
|
options:
|
|
machineType: "N1_HIGHCPU_8"
|