Skip to content

Commit

Permalink
ci: Try to fix sed on MacOS again
Browse files Browse the repository at this point in the history
  • Loading branch information
JadedBlueEyes committed Jul 26, 2024
1 parent 9a6eff0 commit 892545a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ jobs:
# cargo llvm-cov report --doctests --lcov --output-path lcov-${{ matrix.os }}.info
cargo llvm-cov report --lcov --output-path lcov-${{ matrix.os }}.info
- name: Replace workspace in lcov
run: sed -e "s%${{ github.workspace }}%WORKSPACE%g" lcov-${{ matrix.os }}.info -i=""
run: sed "s%${{ github.workspace }}%WORKSPACE%g" -i lcov-${{ matrix.os }}.info
- name: Upload code coverage to GitHub
uses: actions/upload-artifact@v4
with:
Expand Down Expand Up @@ -111,7 +111,7 @@ jobs:
merge-multiple: true
pattern: code-coverage-*
- name: Replace placeholder in lcov
run: sed -e "s%WORKSPACE%${{ github.workspace }}%g" lcov-*.info -i=""
run: sed -i "s%WORKSPACE%${{ github.workspace }}%g" lcov-*.info
- name: Report code coverage
uses: zgosalvez/github-actions-report-lcov@v4
if: success() || failure()
Expand Down

0 comments on commit 892545a

Please sign in to comment.