Skip to content

Commit 0630c57

Browse files
committed
fix: update goreleaser config for multi-module structure
1 parent 6535b6e commit 0630c57

3 files changed

Lines changed: 5 additions & 3 deletions

File tree

.goreleaser.yaml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ project_name: imgx
66

77
before:
88
hooks:
9+
- cp go.work.example go.work
910
- go mod tidy
1011

1112
snapshot:
@@ -17,7 +18,8 @@ metadata:
1718
mod_timestamp: "{{ .CommitTimestamp }}"
1819

1920
builds:
20-
- main: ./cmd/imgx
21+
- dir: ./cmd/imgx
22+
main: .
2123
binary: imgx
2224
env:
2325
- CGO_ENABLED=0

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.3.0
1+
1.3.1

version.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package imgx
33
// Version is the current version of imgx
44
// This is the single source of truth for versioning
55
// Update this when releasing new versions
6-
const Version = "1.3.0"
6+
const Version = "1.3.1"
77

88
// Author is the default author for imgx
99
const Author = "razzkumar"

0 commit comments

Comments
 (0)