Skip to content

Commit

Permalink
👷 Path fix for Linux dotnet tool install
Browse files Browse the repository at this point in the history
  • Loading branch information
mkarlesky committed May 12, 2024
1 parent e80af0b commit 667f32e
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,8 +72,12 @@ jobs:
sudo pip install gcovr
# Install ReportGenerator for Gcov plugin
# Fix PATH before tool installation
# https://stackoverflow.com/questions/59010890/github-action-how-to-restart-the-session
- name: Install ReportGenerator for Gcov plugin
run: |
mkdir --parents $HOME/.dotnet/tools
echo "$HOME/.dotnet/tools" >> $GITHUB_PATH
sudo dotnet tool install --global dotnet-reportgenerator-globaltool
# Run Tests
Expand Down

0 comments on commit 667f32e

Please sign in to comment.