-
Following up on #2149, For projects without go mod, goreleaser is working. However, when I try on projects without go mod but with dependences, it is failing --
Is it true that dependences is the problem, or something else (e.g., problem only relates to Would it be possible that I set my own Thx |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 3 replies
-
This issue has nothing to do with goreleaser itself, but with the fact you're not running if you just |
Beta Was this translation helpful? Give feedback.
-
I wanted to do I've consulted the doc, and put a Global Hooks in |
Beta Was this translation helpful? Give feedback.
-
I tried to go through the doc again @caarlos0, but am still not be able to find a more proper place than the Global Hooks, which is not working as I expected. |
Beta Was this translation helpful? Give feedback.
This issue has nothing to do with goreleaser itself, but with the fact you're not running
go get ./...
anywhere in the pipeline.if you just
git clone
andgo build
your project in a fresh machine it'll fail as well.