Replies: 1 comment 1 reply
-
FWIW you can use |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I am usually running this a lot when I work on code:
goreleaser release --snapshot --rm-dist
As projects grow, this tends to take longer and longer, especially when I target different combinations of
GOOS
andGOARCH
. And most of the time, I want one binary: one for the OS I am working on.I am wondering what the best way to do this would be. Would anyone "mind" a flag like
--only-current-goos-goarch
;) (open to a better name). Or should I maintain a copy of my.goreleaser.yml
for this purpose? Or maybe an environment variable?Beta Was this translation helpful? Give feedback.
All reactions