We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1875fcd commit b2d88f6Copy full SHA for b2d88f6
.github/workflows/release.yml
@@ -50,6 +50,8 @@ jobs:
50
51
- platform: ubuntu-22.04
52
target: x86_64-unknown-linux-gnu
53
+ - platform: ubuntu-22.04-arm
54
+ target: aarch64-unknown-linux-gnu
55
56
runs-on: ${{ matrix.platform }}
57
steps:
@@ -67,10 +69,10 @@ jobs:
67
69
run: rustup target add ${{ matrix.target }}
68
70
71
- name: Install dependencies (ubuntu only)
- if: matrix.platform == 'ubuntu-22.04'
72
+ if: startsWith(matrix.platform, 'ubuntu')
73
run: |
74
sudo apt-get update
- sudo apt-get install -y libwebkit2gtk-4.1-dev libappindicator3-dev librsvg2-dev patchelf
75
+ sudo apt-get install -y libwebkit2gtk-4.1-dev libappindicator3-dev librsvg2-dev patchelf xdg-utils
76
77
- name: Install Rust stable
78
uses: dtolnay/rust-toolchain@stable
0 commit comments