diff options
| author | Jeff Halter <868228+jhalter@users.noreply.github.com> | 2022-11-03 17:15:45 -0700 |
|---|---|---|
| committer | Jeff Halter <868228+jhalter@users.noreply.github.com> | 2022-11-03 17:15:45 -0700 |
| commit | 75019849ff5e8301671a4aa9c1e7d928b98fd458 (patch) | |
| tree | 0365804a21b8d23b2af7e289cc4ad45a6ad233e8 /.circleci | |
| parent | 6ee35e569bf1e24f09657fe61da0daaa21cd9192 (diff) | |
Troubleshoot build pipeline
Diffstat (limited to '.circleci')
| -rw-r--r-- | .circleci/config.yml | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/.circleci/config.yml b/.circleci/config.yml index 58e6399..4b6752d 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -32,7 +32,7 @@ jobs: steps: - checkout - run: go get -u github.com/mitchellh/gox - - run: go install github.com/tcnksm/ghr + - run: go get -u github.com/tcnksm/ghr - run: go install github.com/stevenmatthewt/semantics@latest - run: name: cross compile @@ -43,6 +43,8 @@ jobs: name: create release command: | tag=$(/home/circleci/go/bin/semantics --output-tag) + # temp troubleshooting >:( + find / -name ghr if [ "$tag" ]; then /home/circleci/go/bin/ghr -t $GITHUB_TOKEN -u $CIRCLE_PROJECT_USERNAME -r $CIRCLE_PROJECT_REPONAME --replace $tag dist/ else |