2023-07-09 00:39:36 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
set -euo pipefail
|
|
|
|
|
2023-10-12 05:03:38 +00:00
|
|
|
go install github.com/goreleaser/goreleaser@v1.21.2
|
2023-09-18 06:02:48 +00:00
|
|
|
|
2023-07-09 00:39:36 +00:00
|
|
|
DRONE_TAG=${DRONE_TAG-""}
|
|
|
|
|
|
|
|
is_snapshot=""
|
|
|
|
|
|
|
|
if [ -z "$DRONE_TAG" ]; then
|
|
|
|
is_snapshot="--snapshot"
|
|
|
|
fi
|
|
|
|
|
2023-10-14 11:10:33 +00:00
|
|
|
goreleaser release $is_snapshot -p 6 --skip=publish
|