Skip to content

Commit 9e5396f

Browse files
Fix double quotes for shell vars
1 parent bd7b87e commit 9e5396f

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
@@ -238,8 +238,8 @@ jobs:
238238
run: |
239239
# Extract coverage percentage
240240
COVERAGE=$(gcovr --print-summary | grep 'lines:' | awk '{print $2}')
241-
echo "COVERAGE_PERCENTAGE=$COVERAGE" >> $GITHUB_ENV
242-
echo "Coverage: $COVERAGE"
241+
echo "COVERAGE_PERCENTAGE=\"$COVERAGE\"" >> $GITHUB_ENV
242+
echo "Coverage: \"$COVERAGE\""
243243
244244
- name: Upload build artifacts
245245
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4

0 commit comments

Comments
 (0)