mirror of
https://github.com/psviderski/unregistry.git
synced 2025-12-14 20:35:57 +01:00
fix: Add missing dummy file
This commit is contained in:
6
.gitignore
vendored
6
.gitignore
vendored
@@ -30,3 +30,9 @@ go.work.sum
|
||||
# Editor/IDE
|
||||
.idea/
|
||||
# .vscode/
|
||||
|
||||
# GoReleaser
|
||||
dist/
|
||||
|
||||
# Misc
|
||||
tmp/
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
[tools]
|
||||
go = "1.24"
|
||||
goreleaser = "2.10.2"
|
||||
shellcheck = "0.10.0"
|
||||
|
||||
[env]
|
||||
|
||||
9
misc/dummy.go
Normal file
9
misc/dummy.go
Normal file
@@ -0,0 +1,9 @@
|
||||
// This is a dummy Go file to be built as part of the goreleaser.
|
||||
// It is a workaround for the GoReleaser having difficulties with publishing
|
||||
// homebrew casks without an actual built binary.
|
||||
// Why not building a real unregistry binary? We want to release homebrew casks
|
||||
// for multiple architectures and OSes, so building a real binary
|
||||
// would be slow due to cross-compilation.
|
||||
package main
|
||||
|
||||
func main() {}
|
||||
Reference in New Issue
Block a user