Skip to content

Commit

Permalink
fix(ledger): fix curl error when publishing (#609)
Browse files Browse the repository at this point in the history
  • Loading branch information
paul-nicolas authored and flemzord committed Dec 4, 2023
1 parent 206397f commit f1e8c7b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .goreleaser.ledger.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ publishers:
ids:
- packages
dir: "{{ dir .ArtifactPath }}"
cmd: curl -F package=@{{ .ArtifactName }} https://{{ .Env.FURY_TOKEN }}@push.fury.io/ledger/
cmd: curl --http1.1 -F package=@{{ .ArtifactName }} https://{{ .Env.FURY_TOKEN }}@push.fury.io/ledger/

brews:
- repository:
Expand Down
2 changes: 1 addition & 1 deletion .goreleaser.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,4 +49,4 @@ publishers:
ids:
- packages
dir: "{{ dir .ArtifactPath }}"
cmd: curl -F package=@{{ .ArtifactName }} https://{{ .Env.FURY_TOKEN }}@push.fury.io/ledger/
cmd: curl --http1.1 -F package=@{{ .ArtifactName }} https://{{ .Env.FURY_TOKEN }}@push.fury.io/ledger/

0 comments on commit f1e8c7b

Please sign in to comment.