Is there a way to publish artifacts but disable the release pipeline dynamically? #3042
-
Awesome tool - I've used this in a couple of different projects already and I've been super happy integrating it in CI/CD pipelines. Hopefully this is a quick question: I was looking into consolidating our deploy/release pipeline and wanted to use goreleaser to build and publish container and manifestlist images when new tags are created, and when new commits merge to the default branch (e.g. main).
For the latter case, I'm interested in publishing those goreleaser built container images, but I'd like to avoid have a release published, which I think gives me the following options:
I took a stab at trying to dynamically flipping this |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Hey, this is possible as a pro feature https://goreleaser.com/customization/nightlies/ You could also use envsubst or something like that to replace things in the yaml before running goreleaser. hope this helps :) |
Beta Was this translation helpful? Give feedback.
Hey, this is possible as a pro feature
https://goreleaser.com/customization/nightlies/
You could also use envsubst or something like that to replace things in the yaml before running goreleaser.
hope this helps :)