We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2998b57 commit 883d465Copy full SHA for 883d465
.github/workflows/release.yml
@@ -66,7 +66,12 @@ jobs:
66
67
- name: Strip binary (Linux/macOS)
68
if: matrix.os != 'windows-latest'
69
- run: strip target/${{ matrix.target }}/release/${{ matrix.artifact_name }}
+ run: |
70
+ if [ "${{ matrix.target }}" = "aarch64-unknown-linux-gnu" ]; then
71
+ aarch64-linux-gnu-strip target/${{ matrix.target }}/release/${{ matrix.artifact_name }}
72
+ else
73
+ strip target/${{ matrix.target }}/release/${{ matrix.artifact_name }}
74
+ fi
75
76
- name: Create tarball (Linux/macOS)
77
0 commit comments