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 d40ec70 commit 3f21d61Copy full SHA for 3f21d61
.circleci/config.yml
@@ -8,11 +8,31 @@ jobs:
8
- go/mod-download
9
- go/save-cache
10
- go/test
11
+ release:
12
+ docker:
13
+ - image: circleci/node:10.16
14
+ steps:
15
+ - checkout
16
+ - restore_cache:
17
+ key: npm-cache
18
+ - run: npm install @semantic-release/changelog -D
19
+ - run: npm install @semantic-release/git -D
20
+ - run: npx semantic-release
21
+ - save_cache:
22
23
+ paths:
24
+ - node_modules
25
orbs:
26
go: circleci/[email protected]
27
version: 2.1
28
workflows:
29
default:
30
jobs:
31
- build
32
+ - release:
33
+ filters:
34
+ branches:
35
+ only: master
36
+ requires:
37
+ - build
38
version: 2
0 commit comments