Browse Source

Merge pull request #2817 from icsharpcode/fix/2816

pull/2828/head
Siegfried Pammer 3 years ago committed by GitHub
parent
commit
d35959d824
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      .github/workflows/build-ilspy.yml

2
.github/workflows/build-ilspy.yml

@ -37,7 +37,7 @@ jobs: @@ -37,7 +37,7 @@ jobs:
shell: pwsh
run: |
.\BuildTools\ghactions-install.ps1
Get-ChildItem Env: | Where-Object {$_.Name -Match "^ILSPY_"} | %{ echo "::set-output name=$($_.Name)::$($_.Value)" }
Get-ChildItem Env: | Where-Object {$_.Name -Match "^ILSPY_"} | %{ echo "$($_.Name)=$($_.Value)" } | Out-File -FilePath $Env:GITHUB_OUTPUT -Encoding utf8 -Append
- name: Restore the application
run: msbuild ILSpy.sln /t:Restore /p:Configuration=${{ matrix.configuration }} /p:Platform=$env:BuildPlatform

Loading…
Cancel
Save