Skip to content

Commit f25cd9f

Browse files
committed
no more arm64 cuz it refuses to collaborate
1 parent e0e2795 commit f25cd9f

File tree

1 file changed

+2
-8
lines changed

1 file changed

+2
-8
lines changed

.github/workflows/dotnet_build_release.yml

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,10 @@ jobs:
1212
strategy:
1313
matrix:
1414
os: [windows-latest, ubuntu-latest, macos-latest]
15-
arch: [x64, x86, arm64]
15+
arch: [x64, x86]
1616
exclude:
1717
- os: macos-latest
1818
arch: x86
19-
- os: windows-latest
20-
arch: arm64
2119

2220
steps:
2321
# Checkout the repo
@@ -68,11 +66,7 @@ jobs:
6866
if: matrix.os != 'windows-latest'
6967
shell: bash
7068
run: |
71-
if [[ "${{ matrix.arch }}" == "arm64" ]]; then
72-
RID="${{ matrix.os == 'ubuntu-latest' && 'linux-arm64' || 'osx-arm64' }}"
73-
else
74-
RID="${{ matrix.os == 'ubuntu-latest' && 'linux-x64' || 'osx-x64' }}"
75-
fi
69+
RID="${{ matrix.os == 'ubuntu-latest' && 'linux-x64' || 'osx-x64' }}"
7670
dotnet publish ./RSML.CLI/RSML.CLI.csproj -c Release -r $RID --self-contained true -o publish
7771
cd publish
7872
zip -r ../RSML.CLI-${{ matrix.os }}-${{ matrix.arch }}.zip .

0 commit comments

Comments
 (0)