Skip to content

Commit

Permalink
Don't hardcode paths in Ubuntu workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
falbrechtskirchinger committed Aug 1, 2022
1 parent a51b04b commit cea3a07
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ubuntu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -83,12 +83,12 @@ jobs:
uses: actions/upload-artifact@v3
with:
name: code-coverage-report
path: /__w/json/json/build/html
path: ${{ github.workspace }}/build/html
- name: Coveralls
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
path-to-lcov: /__w/json/json/build/json.info.filtered.noexcept
path-to-lcov: ${{ github.workspace }}/build/json.info.filtered.noexcept

ci_test_compilers:
runs-on: ubuntu-latest
Expand Down

0 comments on commit cea3a07

Please sign in to comment.