Skip to content

Commit

Permalink
patch: added install for semantics
Browse files Browse the repository at this point in the history
  • Loading branch information
TanklesXL authored Dec 17, 2018
1 parent bf81831 commit 3588d16
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ jobs:
- run: go get -u github.com/mitchellh/gox
- run: go get -u github.com/tcnksm/ghr
- run: go get -u github.com/stevenmatthewt/semantics
- run: go install github.com/stevenmatthewt/semantics
- run: go get -v -t -d ./...
- run:
name: cross compile
Expand All @@ -33,7 +34,7 @@ jobs:
name: create release
command: |
tag=$(semantics --output-tag)
if ["$tag"]; then
if [ "$tag" ]; then
ghr -t $GITHUB_TOKEN -u $CIRCLE_PROJECT_USERNAME -r $CIRCLE_PROJECT_REPONAME --replace $tag dist/
else
echo "The commit message(s) did not indicate a major/minor/patch version."
Expand Down

0 comments on commit 3588d16

Please sign in to comment.