diff --git a/.gitea/workflows/msbuild.yaml b/.gitea/workflows/msbuild.yaml index c738e6c..32ec7ae 100644 --- a/.gitea/workflows/msbuild.yaml +++ b/.gitea/workflows/msbuild.yaml @@ -24,7 +24,7 @@ jobs: - name: Where Am I shell: bash working-directory: ${{runner.workspace}} - run: pwd && ls -l && dotnet --info && pwsh --version + run: export PATH="$PATH:/root/.dotnet/tools" && pwd && ls -l && dotnet --info && pwsh --version - name: Start Web shell: bash @@ -34,4 +34,4 @@ jobs: - name: Run Playwright Tests shell: bash working-directory: ${{runner.workspace}} - run: pwsh bin/Debug/netX/playwright.ps1 install && cd PlaywrightTests && dotnet test + run: export PATH="$PATH:/root/.dotnet/tools" && pwsh bin/Debug/netX/playwright.ps1 install && cd PlaywrightTests && dotnet test