From 4b70894db27c68256fecbf23039d17d974375fc8 Mon Sep 17 00:00:00 2001 From: Carsten Igel Date: Fri, 26 Apr 2024 14:52:20 +0200 Subject: [PATCH] ci: Add x86 Runtime --> We're publishing dscom.exe within dscom.build as not selfcontained. Hence the hostfxr must be installed. --- .github/workflows/example-test.yaml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/example-test.yaml b/.github/workflows/example-test.yaml index 3db758d..2a4bfd8 100644 --- a/.github/workflows/example-test.yaml +++ b/.github/workflows/example-test.yaml @@ -24,6 +24,12 @@ jobs: uses: actions/setup-dotnet@v3 with: global-json-file: global.json + - name: Setup .NET (x86) + uses: actions/setup-dotnet@v3 + with: + global-json-file: global.json + env: + PROCESSOR_ARCHITECTURE: x86 - name: Restore dependencies run: dotnet restore