Skip to content
This repository was archived by the owner on Nov 1, 2021. It is now read-only.

Commit f006c9a

Browse files
committed
🚑 🚀 Fixes issue with incorrect version determination in GitHub release call
1 parent a770f07 commit f006c9a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.circleci/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ jobs:
6969
-H "Authorization: token ${GITHUB_TOKEN}" \
7070
-H "Cache-Control: no-cache" \
7171
"https://api.github.com/repos/hassio-addons/qemu-user-static/releases" \
72-
| jq -r --arg version "${CIRCLE_TAG:-}" '.[] | select(.tag_name == "v"+$version).id')
72+
| jq -r --arg version "${CIRCLE_TAG:-}" '.[] | select(.tag_name == $version).id')
7373
if [ -z "$release_id" ]; then
7474
echo "Release on GitHub not found!"
7575
exit 1

0 commit comments

Comments
 (0)