Skip to content

Commit 81e7e40

Browse files
[STYLE] Improved quoting in CI-BUILD.yml (- WIP #266 -)
Changes in file .github/workflows/CI-BUILD.yml: * refactored `$GITHUB_OUTPUT` to `"$GITHUB_OUTPUT"`
1 parent 61b2be8 commit 81e7e40

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/CI-BUILD.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@ jobs:
163163
- id: check_status
164164
run: |
165165
if [[ "${{ needs.BUILD.result }}" == "success" && "${{ needs.BOOTSTRAP.result }}" == "success" ]]; then
166-
echo "build_success=true" >> $GITHUB_OUTPUT
166+
echo "build_success=true" >> "$GITHUB_OUTPUT"
167167
else
168-
echo "build_success=false" >> $GITHUB_OUTPUT
168+
echo "build_success=false" >> "$GITHUB_OUTPUT"
169169
fi

0 commit comments

Comments
 (0)