Skip to content

Commit

Permalink
Fixes an issue with github-release
Browse files Browse the repository at this point in the history
  • Loading branch information
haroon-sheikh committed Jul 7, 2023
1 parent 4eb3884 commit 4d7bd49
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,9 @@ jobs:
command: go get ./...
- run:
name: Install github-release
command: go get -v -u github.com/aktau/github-release
command: |
go get -v -u github.com/github-release/github-release
go install github.com/github-release/github-release
- run:
name: Build and Release
command: .circleci/release.sh
Expand Down
2 changes: 1 addition & 1 deletion .circleci/release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ go run build/make.go --all-platforms --distro

cd deploy/
for i in `ls`; do
${GOPATH}/bin/github-release upload \
github-release upload \
-u ${CIRCLE_PROJECT_USERNAME} \
-r ${CIRCLE_PROJECT_REPONAME} \
-t ${CIRCLE_TAG} \
Expand Down

0 comments on commit 4d7bd49

Please sign in to comment.