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 4d2d672 commit defb0a6Copy full SHA for defb0a6
1 file changed
.github/workflows/release.yml
@@ -54,6 +54,14 @@ jobs:
54
- name: Rustup Adds Target
55
run: rustup target add ${{ matrix.target }}
56
57
+ - name: Add musl target (x86_64)
58
+ if: ${{ matrix.target == 'x86_64-unknown-linux-gnu' }}
59
+ run: rustup target add x86_64-unknown-linux-musl
60
+
61
+ - name: Add musl target (aarch64)
62
+ if: ${{ matrix.target == 'aarch64-unknown-linux-gnu' }}
63
+ run: rustup target add aarch64-unknown-linux-musl
64
65
- uses: pnpm/action-setup@a7487c7e89a18df4991f7f222e4898a00d66ddda # v4.1.0
66
67
- uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4.4.0
0 commit comments