GitHub Actions: add missing native folder in .NET workflow

This commit is contained in:
Syping 2025-11-09 13:45:26 +01:00
parent 33dbe75e24
commit f747a19f3c

View file

@ -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