Describe the bug
Using the blob section, i want to upload my build (targeting them with an "id". However, it does not work. When i try with uploading my archives, it works.
To Reproduce
Steps to reproduce the behavior:
# I removed useless information to expose my issue
builds:
- id: builds
binary: myBin
goos:
- linux
- windows
- darwin
release:
disable: true
archives:
- id: archives
replacements:
darwin: Darwin
linux: Linux
windows: Windows
386: i386
amd64: x86_64
blobs:
-
provider: s3
endpoint: xxxxxxx
region: xxxxxxx
bucket: xxxxxxx
ids:
- builds # builds are missing on my S3
- archives # archives are present on my S3
folder: "binaries/{{ .Date }}"
Make sure your config file is valid by running
goreleaser check -f path-to-config-file.
Complete configuration is valid !!
Expected behavior
For the moment, i just have archives artefact on my S3 bucket. I am expecting to have archives and builds artefacts (go binaries)
Environment (please complete the following information):
Thank you !
This is working as intended.
If you want to upload the binaries, you'll need to disable the archiving by setting it the format to binary.
Check docs for more options: https://goreleaser.com/customization/archive/
Hello,
Thank you for the precision about this part of the documentation. I tested and it works. :)
This issue has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs.
Most helpful comment
This is working as intended.
If you want to upload the binaries, you'll need to disable the archiving by setting it the format to
binary.Check docs for more options: https://goreleaser.com/customization/archive/