Skip to content

Commit

Permalink
Merge pull request #567 from ewasm/ci_deploy
Browse files Browse the repository at this point in the history
ci: Upgrade ghr tool
  • Loading branch information
axic committed May 13, 2021
2 parents 639ee94 + b931ecb commit dc886eb
Showing 1 changed file with 12 additions and 2 deletions.
14 changes: 12 additions & 2 deletions circle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -329,6 +329,16 @@ jobs:
- checkout
- *codespell

test_ghr:
docker:
- image: circleci/golang
steps:
- run:
name: "Install ghr"
command: |
go install github.com/tcnksm/ghr@v0.13.0
ghr --version
# The job collects built packages (available in the workspace) and
# uploads them to the GitHub release matching the git tag.
deploy:
Expand All @@ -338,8 +348,7 @@ jobs:
- run:
name: "Install ghr"
command: |
go get -u github.com/kardianos/govendor
govendor get github.com/tcnksm/ghr@=v0.12.0
go install github.com/tcnksm/ghr@v0.13.0
- attach_workspace:
at: ~/package
- run:
Expand All @@ -355,6 +364,7 @@ workflows:
version: 2
hera:
jobs:
- test_ghr
- lint
- linux-clang-shared-asan
- linux-gcc-shared-coverage
Expand Down

0 comments on commit dc886eb

Please sign in to comment.