File tree Expand file tree Collapse file tree 1 file changed +2
-8
lines changed Expand file tree Collapse file tree 1 file changed +2
-8
lines changed Original file line number Diff line number Diff line change @@ -12,12 +12,10 @@ jobs:
12
12
strategy :
13
13
matrix :
14
14
os : [windows-latest, ubuntu-latest, macos-latest]
15
- arch : [x64, x86, arm64 ]
15
+ arch : [x64, x86]
16
16
exclude :
17
17
- os : macos-latest
18
18
arch : x86
19
- - os : windows-latest
20
- arch : arm64
21
19
22
20
steps :
23
21
# Checkout the repo
68
66
if : matrix.os != 'windows-latest'
69
67
shell : bash
70
68
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' }}"
76
70
dotnet publish ./RSML.CLI/RSML.CLI.csproj -c Release -r $RID --self-contained true -o publish
77
71
cd publish
78
72
zip -r ../RSML.CLI-${{ matrix.os }}-${{ matrix.arch }}.zip .
You can’t perform that action at this time.
0 commit comments