ci: append path prematurely
Some checks failed
Test if Server can be built / build-server (push) Successful in 25s
Test if Server can be built / sonarqube (push) Failing after 1m22s

This commit is contained in:
Timothy Schenk 2023-11-01 19:11:18 +01:00
parent fc3f00b3fe
commit 41a3505e27

View file

@ -33,9 +33,9 @@ jobs:
run: |
apt-get update
apt-get install --yes openjdk-11-jre
export PATH="$PATH:$HOME/.dotnet/tools"
dotnet tool install --global dotnet-sonarscanner
dotnet tool install --global dotnet-coverage
export PATH=$PATH:$HOME/.dotnet/tools
- name: Sonarqube Begin
run: |
dotnet sonarscanner begin /d:sonar.token="${{ secrets.SONAR_TOKEN }}" /d:sonar.host.url="${{ secrets.SONAR_HOST_URL }}"