Skip to content
This repository has been archived by the owner on Feb 21, 2023. It is now read-only.

Commit

Permalink
More small fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
rb-johnmurphy committed Apr 23, 2018
1 parent d677095 commit 70addda
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 8 deletions.
5 changes: 0 additions & 5 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,6 @@
language: go
go:
- 1.x
before_install:
- eval "$(ssh-agent -s)"
- openssl aes-256-cbc -K $encrypted_e668e8769cda_key -iv $encrypted_e668e8769cda_iv -in travis-ci.enc -out travis-ci -d
- chmod 600 travis-ci
- ssh-add travis-ci
install:
- go get github.com/redbubble/go-passe
- go get github.com/golang/dep/cmd/dep
Expand Down
7 changes: 4 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
VERSION ?= "1.0.0"
VERSION ?= 1.0.0

.PHONY: vendor test install

Expand All @@ -18,6 +18,7 @@ fmt:
install:
go install

release: build
git tag -a "release-${VERSION}" -m "Releasing version ${VERSION}"
release:
git tag -a "v${VERSION}" -m "Releasing version ${VERSION}"
git push --tags
goreleaser

0 comments on commit 70addda

Please sign in to comment.