We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 583dbe8 commit 96df1bbCopy full SHA for 96df1bb
.circleci/config.yml
@@ -11,9 +11,24 @@ jobs:
11
- gusto/yarn-install
12
- run: yarn lint
13
- run: yarn test
14
+ release:
15
+ docker:
16
+ - image: circleci/node:12
17
+ steps:
18
+ - checkout
19
+ - gusto/yarn-install
20
+ # Run optional required steps before releasing
21
+ # - run: npm run build-script
22
+ - run: npx semantic-release
23
24
workflows:
25
version: 2
26
main:
27
jobs:
28
- test
29
+ - release:
30
+ filters:
31
+ branches:
32
+ only: master
33
+ requires:
34
+ - test
0 commit comments