Skip to content

Commit 5e6e104

Browse files
committed
[ci] Fix Quoted URL in CD Workflow
Fix an issue where the release notes would generate a URL like: [text]("url") Change this to the following by using the `jq` raw string option: [text](url) Signed-off-by: Schuyler Eldridge <schuyler.eldridge@sifive.com>
1 parent 1933502 commit 5e6e104

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/cd-circt.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ jobs:
161161
-H "Authorization: ${{ github.token }}" \
162162
-H "X-GitHub-Api-Version: 2022-11-28" \
163163
https://api.github.com/repos/llvm/circt/releases/tags/$tag | \
164-
jq '.html_url'
164+
jq -r '.html_url'
165165
)
166166
JSON=$(
167167
echo $JSON | \

0 commit comments

Comments
 (0)