1
0
mirror of https://github.com/goreleaser/goreleaser.git synced 2025-01-08 03:31:59 +02:00
goreleaser/scripts/fury-upload.sh
Carlos A Becker 097c456a3b
chore(ci): publish to fury
Signed-off-by: Carlos A Becker <caarlos0@gmail.com>
2021-06-21 02:26:17 +00:00

7 lines
163 B
Bash
Executable File

#!/bin/bash
set -e
if [ "${1: -4}" == ".deb" ] || [ "${1: -4}" == ".rpm" ]; then
cd dist
curl -F package="@$1" "https://$FURY_TOKEN@push.fury.io/goreleaser/"
fi