We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fa37481 commit 3bda4ffCopy full SHA for 3bda4ff
.circleci/config.yml
@@ -79,7 +79,7 @@ jobs:
79
80
publish-github-release:
81
docker:
82
- - image: circleci/golang:1.17
+ - image: cimg/go:1.22
83
84
steps:
85
- attach_workspace:
@@ -88,7 +88,7 @@ jobs:
88
- run:
89
name: "Publish Release on GitHub"
90
command: |
91
- go get github.com/tcnksm/ghr
+ go install github.com/tcnksm/ghr@latest
92
VERSION=$CIRCLE_TAG
93
ghr -t ${GITHUB_TOKEN} -u ${CIRCLE_PROJECT_USERNAME} -r ${CIRCLE_PROJECT_REPONAME} -c ${CIRCLE_SHA1} -n ${VERSION} -delete -prerelease ${VERSION} release/
94
0 commit comments