File tree Expand file tree Collapse file tree 3 files changed +16
-0
lines changed Expand file tree Collapse file tree 3 files changed +16
-0
lines changed Original file line number Diff line number Diff line change @@ -30,3 +30,9 @@ go.work.sum
30
30
# Editor/IDE
31
31
.idea /
32
32
# .vscode/
33
+
34
+ # GoReleaser
35
+ dist /
36
+
37
+ # Misc
38
+ tmp /
Original file line number Diff line number Diff line change 1
1
[tools ]
2
2
go = " 1.24"
3
+ goreleaser = " 2.10.2"
3
4
shellcheck = " 0.10.0"
4
5
5
6
[env ]
Original file line number Diff line number Diff line change
1
+ // This is a dummy Go file to be built as part of the goreleaser.
2
+ // It is a workaround for the GoReleaser having difficulties with publishing
3
+ // homebrew casks without an actual built binary.
4
+ // Why not building a real unregistry binary? We want to release homebrew casks
5
+ // for multiple architectures and OSes, so building a real binary
6
+ // would be slow due to cross-compilation.
7
+ package main
8
+
9
+ func main () {}
You can’t perform that action at this time.
0 commit comments