mirror of
https://github.com/jhillyerd/inbucket.git
synced 2025-12-17 09:37:02 +00:00
11 lines
238 B
Bash
Executable File
11 lines
238 B
Bash
Executable File
#!/bin/bash
|
|
# travis-deploy.sh
|
|
# description: Trigger goreleaser deployment in correct build scenarios
|
|
|
|
set -eo pipefail
|
|
set -x
|
|
|
|
if [[ "$TRAVIS_GO_VERSION" == "$DEPLOY_WITH_MAJOR."* ]]; then
|
|
curl -sL https://git.io/goreleaser | bash
|
|
fi
|