14 lines
187 B
Bash
Executable File
14 lines
187 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -euo pipefail
|
|
|
|
DRONE_TAG=${DRONE_TAG-""}
|
|
|
|
is_snapshot=""
|
|
|
|
if [ -z "$DRONE_TAG" ]; then
|
|
is_snapshot="--snapshot"
|
|
fi
|
|
|
|
goreleaser release $is_snapshot -p 6 --skip-publish
|