Skip to content

Commit

Permalink
Update dotnet.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
mattleibow committed Aug 8, 2024
1 parent ee47c48 commit 06018cf
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .github/workflows/dotnet.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,18 @@ jobs:
- name: get available space on agent
run: |
Get-PSDrive -PSProvider FileSystem
- name: install .net
run: |
iwr 'https://dot.net/v1/dotnet-install.ps1' -OutFile 'dotnet-install.ps1'
./dotnet-install.ps1 -InstallDir "$PWD/.dotnet" -Version '9.0.0-preview.7.24405.7' -Verbose
echo "$PWD/.dotnet" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append
- name: check .net
run: |
dir env:
dotnet --info
- name: install .net workloads
run: |
dotnet workload install android ios macos tvos maccatalyst --skip-sign-check --from-rollback-file rollback.json --verbosity diag --configfile NuGet.config
- name: get available space on agent
run: |
Get-PSDrive -PSProvider FileSystem

0 comments on commit 06018cf

Please sign in to comment.