Skip to content

Commit 63c5359

Browse files
committed
ci
1 parent f2fa31a commit 63c5359

File tree

1 file changed

+35
-0
lines changed

1 file changed

+35
-0
lines changed

.circleci/config.yml

+35
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
version: 2.1
2+
3+
4+
orbs:
5+
node: circleci/[email protected]
6+
aws: circleci/[email protected]
7+
8+
9+
jobs:
10+
deploy-json:
11+
machine:
12+
image: ubuntu-1604:202007-01
13+
steps:
14+
- checkout
15+
- node/install:
16+
node-version: 12.16.2
17+
install-yarn: true
18+
install-npm: false
19+
- run: yarn install
20+
- add_ssh_keys:
21+
fingerprints:
22+
- "64:ce:5e:b5:3f:c5:fe:94:90:7a:fb:d5:5f:c5:a7:ef"
23+
- run: ./scripts/deploy.sh
24+
25+
26+
workflows:
27+
deploy:
28+
jobs:
29+
- deploy-json:
30+
filters:
31+
branches:
32+
only:
33+
- master
34+
- production
35+
context: echo

0 commit comments

Comments
 (0)