We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3992d6e commit 55dc728Copy full SHA for 55dc728
1 file changed
.github/workflows/build.yml
@@ -31,9 +31,16 @@ jobs:
31
- name: Build
32
run: dotnet build --configuration Release --no-restore
33
34
+ - name: Resolve Current .NET Version
35
+ shell: pwsh
36
+ run: |
37
+ $dotNetVersion = dotnet --version
38
+ "DOTNET_VERSION=$dotNetVersion" >> $env:GITHUB_ENV
39
+
40
- name: Install Playwright.NET
41
uses: phil-scott-78/setup-playwright-dotnet@v0.1.0-alpha
42
with:
43
+ dotnet-version: ${{ env.DOTNET_VERSION }}
44
with-deps: true
45
browsers: 'all'
46
0 commit comments