aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeff Halter <868228+jhalter@users.noreply.github.com>2022-11-03 17:23:19 -0700
committerJeff Halter <868228+jhalter@users.noreply.github.com>2022-11-03 17:23:19 -0700
commitb22a7e4ddf4f2975786881174dfc21fa35555d7d (patch)
tree921584c3b24265fd11f3d11fdbdeefabf1059c41
parent337f66006e8d71027bbab72403f280c957232f3d (diff)
Troubleshoot build pipeline
-rw-r--r--.circleci/config.yml7
1 files changed, 1 insertions, 6 deletions
diff --git a/.circleci/config.yml b/.circleci/config.yml
index 14f36f9..a5fde65 100644
--- a/.circleci/config.yml
+++ b/.circleci/config.yml
@@ -32,8 +32,7 @@ jobs:
steps:
- checkout
- run: go get -u github.com/mitchellh/gox
- - run: go get -u github.com/tcnksm/ghr
- # - run: find / -name ghr
+ - run: go install github.com/tcnksm/ghr@latest
- run: go install github.com/stevenmatthewt/semantics@latest
- run:
name: cross compile
@@ -44,10 +43,6 @@ jobs:
name: create release
command: |
tag=$(/home/circleci/go/bin/semantics --output-tag)
-
- # wat??
- ghr=$(/home/circleci/go/pkg/mod/cache/download/github.com/tcnksm/ghr)
-
if [ "$tag" ]; then
/home/circleci/go/bin/ghr -t $GITHUB_TOKEN -u $CIRCLE_PROJECT_USERNAME -r $CIRCLE_PROJECT_REPONAME --replace $tag dist/
else