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 uses: actions/download-artifact@v6
with: with:
name: Linux arm64 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 - name: Download Linux x64 Artifacts
uses: actions/download-artifact@v6 uses: actions/download-artifact@v6
with: with:
name: Linux x64 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 - name: Download macOS arm64 Artifacts
uses: actions/download-artifact@v6 uses: actions/download-artifact@v6
with: with:
name: macOS arm64 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 - name: Download macOS x64 Artifacts
uses: actions/download-artifact@v6 uses: actions/download-artifact@v6
with: with:
name: macOS x64 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 - name: Download Windows arm64 Artifacts
uses: actions/download-artifact@v6 uses: actions/download-artifact@v6
with: with:
name: Windows MSVC arm64 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 - name: Download Windows x64 Artifacts
uses: actions/download-artifact@v6 uses: actions/download-artifact@v6
with: with:
name: Windows MSVC x64 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 - name: Download Windows x86 Artifacts
uses: actions/download-artifact@v6 uses: actions/download-artifact@v6
with: with:
name: Windows MSVC x86 name: Windows MSVC x86
path: ${{github.workspace}}/src/dotnet/runtimes/win-x86 path: ${{github.workspace}}/src/dotnet/runtimes/win-x86/native
- name: Setup MSBuild - name: Setup MSBuild
uses: microsoft/setup-msbuild@v2 uses: microsoft/setup-msbuild@v2
- name: Setup .NET - name: Setup .NET