Skip to content

Commit

Permalink
Use older version of goreleaser
Browse files Browse the repository at this point in the history
Not pinning the version means our goreleaser CI step no longer works.
This pins a version that I think will work with our existing config.
  • Loading branch information
lawrencejones committed Feb 11, 2020
1 parent 06bc332 commit 6e3198f
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -95,10 +95,14 @@ jobs:
exit 0
fi
curl -L -o /tmp/goreleaser_Linux_x86_64.tar.gz https://github.com/goreleaser/goreleaser/releases/download/v0.101.0/goreleaser_Linux_x86_64.tar.gz
tar zxf /tmp/goreleaser_Linux_x86_64.tar.gz -C /tmp
git log --pretty=oneline --abbrev-commit --no-decorate --no-color "$(git describe --tags --abbrev=0)..HEAD" -- pkg cmd vendor internal > /tmp/release-notes
git tag "${CURRENT_VERSION}"
git push --tags
curl -sL https://git.io/goreleaser | bash
/tmp/goreleaser --rm-dist --release-notes /tmp/release-notes
git push --tags
workflows:
version: 2
Expand Down

0 comments on commit 6e3198f

Please sign in to comment.