Skip to content

Commit

Permalink
goreleaser: fix dirty state
Browse files Browse the repository at this point in the history
  • Loading branch information
boz committed Feb 8, 2020
1 parent 662d013 commit eb67341
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@ if [ "$TRAVIS_BRANCH" != "master" -a \
fi

# test goreleaser
curl -sL https://git.io/goreleaser > goreleaser.sh
chmod 0755 goreleaser.sh
./goreleaser.sh check
curl -sL https://git.io/goreleaser > /tmp/goreleaser.sh
chmod 0755 /tmp/goreleaser.sh
/tmp/goreleaser.sh check

docker login -u "$DOCKERHUB_USERNAME" -p "$DOCKERHUB_PASSWORD"

Expand All @@ -28,4 +28,4 @@ fi

DOCKER_TAG="$TRAVIS_TAG" make image-push

GITHUB_TOKEN="$GITHUB_REPO_TOKEN" ./goreleaser.sh
GITHUB_TOKEN="$GITHUB_REPO_TOKEN" /tmp/goreleaser.sh

0 comments on commit eb67341

Please sign in to comment.