This commit is contained in:
rustmailer
2025-11-21 23:11:46 +08:00
parent 80a2667ae1
commit a62130fb5c
+4 -2
View File
@@ -72,7 +72,7 @@ jobs:
cargo build --release --features vendored-openssl --target=${{ matrix.target }}
- name: Strip binary (Linux and macOS)
if: matrix.os != 'windows-latest'
if: matrix.os != 'windows-latest' && matrix.target != 'aarch64-unknown-linux-gnu'
run: |
strip target/${{ matrix.target }}/release/${{ env.BINARY_NAME }}
@@ -164,7 +164,9 @@ jobs:
- name: Prepare Docker context
run: |
tar -xzf artifacts/${{ env.BINARY_NAME }}-*.tar.gz -C docker
mkdir -p docker/amd64 docker/arm64
tar -xzf artifacts/bichon-*x86_64-unknown-linux-gnu.tar.gz -C docker/amd64
tar -xzf artifacts/bichon-*aarch64-unknown-linux-gnu.tar.gz -C docker/arm64
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3