Skip to content

Commit

Permalink
ci
Browse files Browse the repository at this point in the history
  • Loading branch information
pvinis committed Oct 20, 2020
1 parent f2fa31a commit 63c5359
Showing 1 changed file with 35 additions and 0 deletions.
35 changes: 35 additions & 0 deletions .circleci/config.yml
@@ -0,0 +1,35 @@
version: 2.1


orbs:
node: circleci/node@2.1.1
aws: circleci/aws-s3@2.0.0


jobs:
deploy-json:
machine:
image: ubuntu-1604:202007-01
steps:
- checkout
- node/install:
node-version: 12.16.2
install-yarn: true
install-npm: false
- run: yarn install
- add_ssh_keys:
fingerprints:
- "64:ce:5e:b5:3f:c5:fe:94:90:7a:fb:d5:5f:c5:a7:ef"
- run: ./scripts/deploy.sh


workflows:
deploy:
jobs:
- deploy-json:
filters:
branches:
only:
- master
- production
context: echo

0 comments on commit 63c5359

Please sign in to comment.