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 0d5d7ac commit 55b843fCopy full SHA for 55b843f
.circleci/config.yml
@@ -8,6 +8,8 @@ jobs:
8
working_directory: /go/src/github.com/nilslice/protolock
9
steps:
10
- checkout
11
+ # install goreleaser for automated releases
12
+ - run: curl -sL https://git.io/goreleaser | bash
13
# fetch depenencies, test code
14
- run: go get -v -t -d ./...
15
- run: go test -v -race ./...
@@ -18,3 +20,14 @@ jobs:
18
20
- run: cat proto.lock | grep "testdata:/:test.proto"
19
21
- run: protolock status
22
- run: protolock commit
23
+
24
+workflows:
25
+ version: 2
26
+ release:
27
+ jobs:
28
+ - release:
29
+ filters:
30
+ branches:
31
+ ignore: /.*/
32
+ tags:
33
+ only: /v[0-9]+(\.[0-9]+)*(-.*)*/
0 commit comments