From dab1e13c54b2446b429b0cb508bed6c5312493e9 Mon Sep 17 00:00:00 2001 From: Christoph Haas Date: Fri, 11 Nov 2022 19:18:10 +0100 Subject: [PATCH] fix circle ci config --- .circleci/config.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 2ca66893..923db63d 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -46,7 +46,7 @@ jobs: name: "Publish Release on GitHub" command: | if [ ! -z "${CIRCLE_TAG}" ]; then - go get github.com/tcnksm/ghr + go install github.com/tcnksm/ghr@latest ghr -t ${GITHUB_TOKEN} -u ${CIRCLE_PROJECT_USERNAME} -r ${CIRCLE_PROJECT_REPONAME} -c ${CIRCLE_SHA1} -replace $CIRCLE_TAG ~/repo/dist fi working_directory: ~/repo