We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fd54da8 commit d54c42aCopy full SHA for d54c42a
1 file changed
.github/workflows/release.yml
@@ -37,6 +37,18 @@ jobs:
37
dotnet-version: "10.0.x"
38
dotnet-quality: "ga"
39
40
+ - name: Install cross-compilation toolchain
41
+ if: matrix.rid == 'linux-arm64'
42
+ run: |
43
+ sudo dpkg --add-architecture arm64
44
+ sudo bash -c 'cat > /etc/apt/sources.list.d/arm64.list <<EOF
45
+ deb [arch=arm64] http://ports.ubuntu.com/ noble main restricted universe multiverse
46
+ deb [arch=arm64] http://ports.ubuntu.com/ noble-updates main restricted universe multiverse
47
+ EOF'
48
+ sudo sed -i 's/^deb http/deb [arch=amd64] http/g' /etc/apt/sources.list
49
+ sudo apt-get update
50
+ sudo apt-get install -y clang llvm binutils-aarch64-linux-gnu
51
+
52
- name: Publish
53
run: dotnet publish funURL.CLI -c Release -r ${{ matrix.rid }} -o publish
54
0 commit comments