Replies: 1 comment
-
hey, the Just be careful to not create multiple archives with the same name. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hey,
I have a weird use case and I hope there's a workaround to make it work with goreleaser.
I have been using goreleaser for quite a while and we were renaming our archives for
amd64
and386
intox86_64
andi386
, respectively. The problem is that our tool is mostly used together with Terraform and other iac tools which release their binaries usingamd64
and386
in the archive name...so our users are asking us to follow what other tools are doing so their CI/CD pipelines are easier, ie not having to setup different env vars in different places for installing similar tools. But our tools are already been installed by homebrew and asdf (and maybe others) package managers which already rely on x86_64 and i386, also many CI/CD out there already depend on those arch names.
So we want to distribute both arch styles for back-compatibility purposes. Is that possible?
In other words, is there a way of distributing both
amd64
andx86_64
(duplicating the assets)? Same for386
andi386
?I read the docs multiple times and tried some hacks, but none seems to work.
Beta Was this translation helpful? Give feedback.
All reactions