We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7bf3266 commit 5ccec8fCopy full SHA for 5ccec8f
.github/workflows/release.yml
@@ -71,9 +71,9 @@ jobs:
71
- run: cargo build --target ${{ matrix.target }} --release
72
- run: npm ci
73
- name: vsce package
74
- # we can only publish a single linux-x64 package - so we skip the
75
- # gnu target and package the musl target
76
- if: matrix.target != 'x86_64-unknown-linux-gnu'
+ # we can only publish a single linux-x64 and linux-arm64 package
+ # so we skip the gnu target and package the musl target
+ if: matrix.target != 'x86_64-unknown-linux-gnu' && matrix.target != 'aarch64-unknown-linux-gnu'
77
# use bash on windows
78
shell: bash
79
run: |
0 commit comments