Skip to content

Commit

Permalink
Fix GH arch test format.
Browse files Browse the repository at this point in the history
  • Loading branch information
GinoCanessa committed Sep 12, 2024
1 parent 64929ee commit 11485b5
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -75,19 +75,19 @@ jobs:
enableCrossOsArchive: true

- name: Translate runner.arch to dotnet arch x86
if: $runner.arch == 'X86'
if: runner.arch == 'X86'
run: echo "export DOTNET_ARCH=x86" >> $GITHUB_ENV

- name: Translate runner.arch to dotnet arch x64
if: $runner.arch == 'X64'
if: runner.arch == 'X64'
run: echo "export DOTNET_ARCH=x64" >> $GITHUB_ENV

- name: Translate runner.arch to dotnet arch ARM
if: $runner.arch == 'ARM'
if: runner.arch == 'ARM'
run: echo "export DOTNET_ARCH=arm" >> $GITHUB_ENV

- name: Translate runner.arch to dotnet arch ARM64
if: $runner.arch == 'ARM64'
if: runner.arch == 'ARM64'
run: echo "export DOTNET_ARCH=arm64" >> $GITHUB_ENV

- name: Install dependencies, use the dotnet arch
Expand Down

0 comments on commit 11485b5

Please sign in to comment.