Skip to content

Commit

Permalink
Update build.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
MatejKafka authored Apr 1, 2024
1 parent f73247a commit 72c35ed
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,20 @@ jobs:
steps:
- uses: actions/checkout@v4


- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: 9.0.x

- name: Install ILRepack
shell: pwsh
run: |
iwr https://www.nuget.org/api/v2/package/ILRepack/2.0.29 -OutFile $env:TEMP\ilrepack.nupkg
Expand-Archive $env:TEMP\ilrepack.nupkg $env:TEMP\ilrepack
# add to PATH for following steps
Add-Content $env:GITHUB_PATH $env:TEMP\ilrepack\tools

- name: Remove private test projects
run: dotnet sln remove RandomTests RandomBenchmarks

Expand Down

0 comments on commit 72c35ed

Please sign in to comment.