Skip to content

Commit

Permalink
pspreview_8
Browse files Browse the repository at this point in the history
  • Loading branch information
tig committed Nov 6, 2023
1 parent d4239ef commit 0e6d871
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,19 @@ jobs:
fail-fast: false
matrix:
os: [windows-latest, ubuntu-latest, macos-latest]

steps:

- name: HACK - Install Latest PowerShell (so we get v7.3+ that uses .net 7)
shell: pwsh
run: |
dotnet tool install --global PowerShell
$prependText = "C:\Users\runneradmin\.dotnet\tools"
$filePath = $env:GITHUB_PATH
$content = Get-Content -Path $filePath
$newContent = $prependText + "`r`n" + $content
$newContent | Set-Content -Path $filePath -Encoding utf8

- name: Download Build Output
uses: actions/download-artifact@v3

Expand Down

0 comments on commit 0e6d871

Please sign in to comment.