GitHub Actions: add missing native folder in .NET workflow
This commit is contained in:
parent
33dbe75e24
commit
f747a19f3c
1 changed files with 7 additions and 7 deletions
14
.github/workflows/dotnet.yml
vendored
14
.github/workflows/dotnet.yml
vendored
|
|
@ -134,37 +134,37 @@ jobs:
|
|||
uses: actions/download-artifact@v6
|
||||
with:
|
||||
name: Linux arm64
|
||||
path: ${{github.workspace}}/src/dotnet/runtimes/linux-arm64
|
||||
path: ${{github.workspace}}/src/dotnet/runtimes/linux-arm64/native
|
||||
- name: Download Linux x64 Artifacts
|
||||
uses: actions/download-artifact@v6
|
||||
with:
|
||||
name: Linux x64
|
||||
path: ${{github.workspace}}/src/dotnet/runtimes/linux-x64
|
||||
path: ${{github.workspace}}/src/dotnet/runtimes/linux-x64/native
|
||||
- name: Download macOS arm64 Artifacts
|
||||
uses: actions/download-artifact@v6
|
||||
with:
|
||||
name: macOS arm64
|
||||
path: ${{github.workspace}}/src/dotnet/runtimes/osx-arm64
|
||||
path: ${{github.workspace}}/src/dotnet/runtimes/osx-arm64/native
|
||||
- name: Download macOS x64 Artifacts
|
||||
uses: actions/download-artifact@v6
|
||||
with:
|
||||
name: macOS x64
|
||||
path: ${{github.workspace}}/src/dotnet/runtimes/osx-x64
|
||||
path: ${{github.workspace}}/src/dotnet/runtimes/osx-x64/native
|
||||
- name: Download Windows arm64 Artifacts
|
||||
uses: actions/download-artifact@v6
|
||||
with:
|
||||
name: Windows MSVC arm64
|
||||
path: ${{github.workspace}}/src/dotnet/runtimes/win-arm64
|
||||
path: ${{github.workspace}}/src/dotnet/runtimes/win-arm64/native
|
||||
- name: Download Windows x64 Artifacts
|
||||
uses: actions/download-artifact@v6
|
||||
with:
|
||||
name: Windows MSVC x64
|
||||
path: ${{github.workspace}}/src/dotnet/runtimes/win-x64
|
||||
path: ${{github.workspace}}/src/dotnet/runtimes/win-x64/native
|
||||
- name: Download Windows x86 Artifacts
|
||||
uses: actions/download-artifact@v6
|
||||
with:
|
||||
name: Windows MSVC x86
|
||||
path: ${{github.workspace}}/src/dotnet/runtimes/win-x86
|
||||
path: ${{github.workspace}}/src/dotnet/runtimes/win-x86/native
|
||||
- name: Setup MSBuild
|
||||
uses: microsoft/setup-msbuild@v2
|
||||
- name: Setup .NET
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue