Skip to content

Commit

Permalink
Added semantic release CI config
Browse files Browse the repository at this point in the history
  • Loading branch information
ArsenyYankovsky committed Oct 12, 2020
1 parent 9f3b8cb commit 2ebd44b
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .circleci/config.yml
@@ -0,0 +1,26 @@
version: 2
jobs:
release:
docker:
- image: "circleci/node:latest"
steps:
- checkout
- run:
name: yarn
command: yarn
- run:
name: build
command: yarn build
- run:
name: release
command: yarn semantic-release || true

workflows:
version: 2
release:
jobs:
- release:
filters:
branches:
only:
- master

0 comments on commit 2ebd44b

Please sign in to comment.