GHA: tidy up single-line run blocks

Also double quote a shell variable.

Closes #17552
This commit is contained in:
Viktor Szakats 2025-06-06 22:15:02 +02:00
parent f33ec60fbf
commit 900612df79
No known key found for this signature in database
GPG key ID: B5ABD165E2AEF201
3 changed files with 5 additions and 7 deletions

View file

@ -133,8 +133,8 @@ jobs:
steps.cache-nghttp3.outputs.cache-hit != 'true' ||
steps.cache-ngtcp2.outputs.cache-hit != 'true' ||
steps.cache-nghttp2.outputs.cache-hit != 'true'
run: |
echo 'needs-build=true' >> $GITHUB_OUTPUT
run: echo 'needs-build=true' >> "$GITHUB_OUTPUT"
- name: 'install build prereqs'
if: steps.settings.outputs.needs-build == 'true'