Skip to content

Commit f2cd229

Browse files
committed
Release v2.9.0
1 parent 0e66b29 commit f2cd229

File tree

3 files changed

+28
-1
lines changed

3 files changed

+28
-1
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
11
# build artifacts
22
/build
3+
/dist
34

45
# for my own testing
56
/.env
67
/*.yaml
8+
!/.goreleaser.yaml
79
!/Makefile.maker.yaml

.goreleaser.yaml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
builds:
2+
- env:
3+
- CGO_ENABLED=0
4+
goos:
5+
- linux
6+
- windows
7+
- darwin
8+
goarch:
9+
- amd64
10+
- arm64
11+
ldflags:
12+
- -X github.com/sapcc/swift-http-import/pkg/util.Version=={{.Version}}
13+
mod_timestamp: "{{ .CommitTimestamp }}" # Ensure builds are reproducible
14+
15+
snapshot:
16+
name_template: "{{ .Tag }}-next"
17+
18+
checksum:
19+
name_template: "checksums.txt"
20+
21+
archives:
22+
- name_template: '{{ .ProjectName }}-{{ replace .Version "v" "" }}-{{ .Os }}-{{ .Arch }}'
23+
format_overrides:
24+
- goos: windows
25+
format: zip

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# v2.9.0 (TBD)
1+
# v2.9.0 (2022-05-19)
22

33
New features:
44
- Add support for GitHub releases.

0 commit comments

Comments
 (0)