Skip to content

Commit 22be4eb

Browse files
committed
fix: Add missing dummy file
1 parent 8ab51ee commit 22be4eb

File tree

3 files changed

+16
-0
lines changed

3 files changed

+16
-0
lines changed

.gitignore

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,3 +30,9 @@ go.work.sum
3030
# Editor/IDE
3131
.idea/
3232
# .vscode/
33+
34+
# GoReleaser
35+
dist/
36+
37+
# Misc
38+
tmp/

.mise.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
[tools]
22
go = "1.24"
3+
goreleaser = "2.10.2"
34
shellcheck = "0.10.0"
45

56
[env]

misc/dummy.go

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
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() {}

0 commit comments

Comments
 (0)