1
0
mirror of https://github.com/goreleaser/goreleaser.git synced 2025-02-03 13:11:48 +02:00

fix: fury upload, maybe

Signed-off-by: Carlos A Becker <caarlos0@gmail.com>
This commit is contained in:
Carlos A Becker 2021-06-21 02:52:31 +00:00
parent fd36b971da
commit f7983ea83e
No known key found for this signature in database
GPG Key ID: E61E2F7DC14AB940

View File

@ -2,5 +2,6 @@
set -e
if [ "${1: -4}" == ".deb" ] || [ "${1: -4}" == ".rpm" ]; then
cd dist
curl -F package="@$1" "https://$FURY_TOKEN@push.fury.io/goreleaser/"
echo "uploading $1"
curl -q -s -F package="@$1" "https://$FURY_TOKEN@push.fury.io/goreleaser/" >/dev/null
fi