-
Hello, After some debugging I found out that https://github.com/goreleaser/goreleaser/blob/main/internal/pipe/blob/upload.go#L155 Types "Binary" and "UploadableBinary" have the same string representation, but are different. If I add the "Binary" type to the filter my upload works. Is it working as intended? If so, how could I change the build config to generate an "UploadableBinary"? I used version 2.10.2, and my config looks like: version: 2
before:
hooks:
- go mod download
builds:
- env:
- CGO_ENABLED=0
...
goos:
- linux
goarch:
- amd64
blobs:
- provider: s3
bucket: arts
endpoint: https://s3.... Thanks |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 3 replies
-
Also, this is a local test. I wonder if when I publish to github the artifact type will be an "UploadbleBinary" and it will work. |
Beta Was this translation helpful? Give feedback.
-
Hi!
archives:
- formats: [ binary ] this should fix it I think :) |
Beta Was this translation helpful? Give feedback.
Hi!
UploadableBinary
is made by the archive config:this should fix it I think :)