1
0
mirror of https://github.com/jhillyerd/inbucket.git synced 2025-12-17 17:47:03 +00:00
Files
go-inbucket/etc/travis-deploy.sh
2018-12-23 10:25:06 -08:00

14 lines
272 B
Bash
Executable File

#!/bin/bash
# travis-deploy.sh
# description: Trigger goreleaser deployment
set -eo pipefail
set -x
# downloading deps probably added to go.mod and go.sum, goreleaser will fail.
git reset --hard
git clean -dfx
# build release.
curl -sL https://git.io/goreleaser | bash