Skip to content

Commit

Permalink
Install x64 first
Browse files Browse the repository at this point in the history
  • Loading branch information
Aragas committed Oct 19, 2024
1 parent 969342d commit 803c4da
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .github/actions/setup-dotnet-windows/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,20 +29,20 @@ runs:
with:
architecture: x86

- name: Setup .NET x86 ${{steps.get_channels.outputs.channels_multiline}}
uses: dlemstra/setup-dotnet@add-architecture-option
if: ${{inputs.architecture == 'x86'}}
- name: Setup .NET ${{inputs.architecture}} ${{steps.get_channels.outputs.channels_multiline}}
uses: actions/setup-dotnet@v4
with:
dotnet-architecture: x86
dotnet-version: |
${{steps.get_channels.outputs.channel}}
${{steps.get_channels.outputs.channels_multiline}}
env:
DOTNET_INSTALL_DIR: ${{steps.get-program-files-x86.outputs.path}}/dotnet
- name: Setup .NET ${{inputs.architecture}} ${{steps.get_channels.outputs.channels_multiline}}
uses: actions/setup-dotnet@v4
- name: Setup .NET x86 ${{steps.get_channels.outputs.channels_multiline}}
uses: dlemstra/setup-dotnet@add-architecture-option
if: ${{inputs.architecture == 'x86'}}
with:
dotnet-architecture: x86
dotnet-version: |
${{steps.get_channels.outputs.channel}}
${{steps.get_channels.outputs.channels_multiline}}
env:
DOTNET_INSTALL_DIR: ${{steps.get-program-files-x86.outputs.path}}/dotnet

0 comments on commit 803c4da

Please sign in to comment.