X-Git-Url: https://git.r.bdr.sh/rbdr/mobius/blobdiff_plain/46acf0721f9bcd5304d0a0fbc10ebe544786d157..c59d86f6ca901f81beb98d3988cc8039f36e63ff:/.circleci/config.yml diff --git a/.circleci/config.yml b/.circleci/config.yml index d93cacc..e7784db 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -4,7 +4,7 @@ jobs: build: working_directory: ~/repo docker: - - image: cimg/go:1.19.1 + - image: cimg/go:1.21.4 steps: - checkout # - restore_cache: @@ -32,7 +32,7 @@ jobs: steps: - checkout - run: go get -u github.com/mitchellh/gox - - run: go get -u github.com/tcnksm/ghr + - run: go install github.com/tcnksm/ghr@latest - run: go install github.com/stevenmatthewt/semantics@latest - run: name: cross compile @@ -44,7 +44,7 @@ jobs: command: | tag=$(/home/circleci/go/bin/semantics --output-tag) if [ "$tag" ]; then - ghr -t $GITHUB_TOKEN -u $CIRCLE_PROJECT_USERNAME -r $CIRCLE_PROJECT_REPONAME --replace $tag dist/ + /home/circleci/go/bin/ghr -t $GITHUB_TOKEN -u $CIRCLE_PROJECT_USERNAME -r $CIRCLE_PROJECT_REPONAME --replace $tag dist/ else echo "The commit message(s) did not indicate a major/minor/patch version." fi