File tree Expand file tree Collapse file tree 1 file changed +9
-8
lines changed Expand file tree Collapse file tree 1 file changed +9
-8
lines changed Original file line number Diff line number Diff line change 23
23
steps :
24
24
- uses : actions/checkout@v4
25
25
26
- - name : Install uv
27
- uses : astral-sh/setup-uv@v5
28
- with :
29
- enable-cache : true
26
+ - name : Install bowtie
27
+ uses : bowtie-json-schema/bowtie@main
30
28
31
29
- name : Compute implementation name
32
30
id : impl
35
33
- name : Compute latest implementation version
36
34
id : version
37
35
run : |
38
- version=$(uvx --from 'bowtie-json-schema' --python 3.13 bowtie info \
36
+ version=$(bowtie info \
39
37
--implementation ${{ steps.impl.outputs.name }} \
40
38
--format json | jq -r '.version // empty')
41
39
echo "value=${version}" >> $GITHUB_OUTPUT
57
55
steps :
58
56
- uses : actions/checkout@v4
59
57
58
+ - name : Install bowtie
59
+ uses : bowtie-json-schema/bowtie@main
60
+
60
61
- name : Install qemu
61
62
run : |
62
63
sudo apt-get update
@@ -87,13 +88,13 @@ jobs:
87
88
88
89
- name : Smoke Test
89
90
run : |
90
- uvx --from 'bowtie-json-schema' --python 3.13 bowtie smoke -i "localhost/${{ steps.build_image.outputs.image-with-tag }}" --format json
91
- uvx --from 'bowtie-json-schema' --python 3.13 bowtie smoke -i "localhost/${{ steps.build_image.outputs.image-with-tag }}" --format markdown >> $GITHUB_STEP_SUMMARY
91
+ bowtie smoke -i "localhost/${{ steps.build_image.outputs.image-with-tag }}" --format json
92
+ bowtie smoke -i "localhost/${{ steps.build_image.outputs.image-with-tag }}" --format markdown >> $GITHUB_STEP_SUMMARY
92
93
93
94
- name : Collect current version
94
95
id : current-version
95
96
run : |
96
- version=$(uvx --from 'bowtie-json-schema' --python 3.13 bowtie info \
97
+ version=$(bowtie info \
97
98
--implementation "localhost/${{ steps.build_image.outputs.image-with-tag }}" \
98
99
--format json | jq -r '.version // empty')
99
100
echo "value=${version}" >> $GITHUB_OUTPUT
You can’t perform that action at this time.
0 commit comments