Skip to content

Commit

Permalink
Fix up coverage flag problem
Browse files Browse the repository at this point in the history
  • Loading branch information
jborean93 committed Mar 21, 2024
1 parent 0b307c0 commit e3db11f
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -101,8 +101,9 @@ jobs:
- name: Extract OS name
shell: bash
run: |
echo NAME=$( echo '${{ matrix.os }}' | tr '-' ' ' | awk '{print $1}' )
echo "name=${NAME}" >> $GITHUB_OUTPUT
NAME=$( echo '${{ matrix.os }}' | tr '-' ' ' | awk '{print $1}' )
echo "${NAME}"
echo "name=${NAME}" >> "${GITHUB_OUTPUT}"
id: os

- name: Test
Expand Down

0 comments on commit e3db11f

Please sign in to comment.