Skip to content

Commit 7f69184

Browse files
committed
Fix yarn deploy
1 parent 09843a0 commit 7f69184

File tree

1 file changed

+3
-7
lines changed

1 file changed

+3
-7
lines changed

.circleci/config.yml

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
release:
3030
working_directory: ~/react-forms
3131
docker:
32-
- image: circleci/node
32+
- image: circleci/node:10
3333
steps:
3434
- attach_workspace:
3535
at: ~/react-forms
@@ -41,22 +41,18 @@ jobs:
4141
deploy:
4242
working_directory: ~/react-forms
4343
docker:
44-
- image: circleci/node
44+
- image: circleci/node:10
4545
steps:
4646
- attach_workspace:
4747
at: ~/react-forms
4848
- run:
4949
name: Install Firebase Tools
5050
command: |
5151
npm install --prefix=./firebase-deploy firebase-tools
52-
- run:
53-
name: Move to demo
54-
command: |
55-
cd packages/react-renderer-demo
5652
- run:
5753
name: Deploy demo
5854
command: |
59-
yarn deploy --token=$FIREBASE_TOKEN
55+
yarn --cwd packages/react-renderer-demo/ deploy --token=$FIREBASE_TOKEN
6056
6157
workflows:
6258
version: 2

0 commit comments

Comments
 (0)