From 08aeebd18a0c5bd28d793c58082f945a8ceccc0f Mon Sep 17 00:00:00 2001 From: Greg Gauthier Date: Tue, 27 Feb 2024 13:07:32 +0000 Subject: [PATCH] add powershell to the dependency stack --- .gitea/workflows/msbuild.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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