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 1b9e9f6 commit 1fc94dbCopy full SHA for 1fc94db
.circleci/config.yml
@@ -2,11 +2,31 @@ version: 2.1
2
3
orbs:
4
go: circleci/[email protected]
5
+ gor: hubci/[email protected]
6
7
workflows:
8
main:
9
jobs:
10
- test
11
+ release:
12
+ jobs:
13
+ - test:
14
+ filters:
15
+ branches:
16
+ ignore: /.*/
17
+ tags:
18
+ # Simplified SemVer regex
19
+ only: /^v\d+\.\d+\.\d+$/
20
+ - gor/release:
21
+ version: "1.5.0"
22
+ go-version: "1.17.7"
23
24
25
26
27
28
29
+ context: main
30
31
32
test:
.goreleaser.yml
@@ -0,0 +1,4 @@
1
+project_name: appindicator
+
+builds:
+ - skip: true
0 commit comments