Skip to content

Commit f40b6a4

Browse files
author
Oleg Sucharevich
committed
add goreleaser yaml
1 parent 6d5666d commit f40b6a4

File tree

3 files changed

+22
-2
lines changed

3 files changed

+22
-2
lines changed

.goreleaser.yml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
builds:
2+
- env:
3+
- CGO_ENABLED=0
4+
archive:
5+
replacements:
6+
darwin: Darwin
7+
linux: Linux
8+
windows: Windows
9+
386: i386
10+
amd64: x86_64
11+
checksum:
12+
name_template: 'checksums.txt'
13+
snapshot:
14+
name_template: "{{ .Tag }}-next"
15+
changelog:
16+
sort: asc
17+
filters:
18+
exclude:
19+
- '^docs:'
20+
- '^test:'

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.1.0
1+
1.1.1

pkg/cmd/cmd.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ func SetupCli() *cli.App {
1414
app.Name = "Stevedore"
1515
app.Description = "Integrate your connected clusters to your Codefresh account"
1616
app.Email = "[email protected]"
17-
app.Version = "1.1.0"
17+
app.Version = "1.1.1"
1818
setupCommands(app)
1919
return app
2020
}

0 commit comments

Comments
 (0)