Skip to content

Commit b852abd

Browse files
author
Oleg
committed
Use raw value in jq to get rid of quotes
1 parent 3214f25 commit b852abd

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
run: |
3838
version=$(uvx --from 'bowtie-json-schema' --python 3.13 bowtie info \
3939
--implementation ${{ steps.impl.outputs.name }} \
40-
--format json | jq '.version // empty')
40+
--format json | jq -r '.version // empty')
4141
echo "value=${version}" >> $GITHUB_OUTPUT
4242
4343
build:
@@ -95,7 +95,7 @@ jobs:
9595
run: |
9696
version=$(uvx --from 'bowtie-json-schema' --python 3.13 bowtie info \
9797
--implementation "localhost/${{ steps.build_image.outputs.image-with-tag }}" \
98-
--format json | jq '.version // empty')
98+
--format json | jq -r '.version // empty')
9999
echo "value=${version}" >> $GITHUB_OUTPUT
100100
101101
- name: Print collected versions

0 commit comments

Comments
 (0)