Skip to content

Commit

Permalink
Improve the github action for building binary.
Browse files Browse the repository at this point in the history
  • Loading branch information
yjcyxky committed Aug 13, 2024
1 parent 3eb9860 commit 6638a72
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/publish-bin.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,12 +38,12 @@ jobs:
- name: Build with messense/rust-musl-cross
run: |
docker run --rm -v "${{ github.workspace }}:/home/rust/src" messense/rust-musl-cross:x86_64-musl cargo build --release --target x86_64-unknown-linux-musl
docker run --rm -v "${{ github.workspace }}:/home/rust/src" messense/rust-musl-cross:x86_64-musl cargo build --release
find ./target -type f -name "biomedgps*" -exec ls -l {} \;
- name: Build with messense/rust-musl-cross
run: |
docker run --rm -v "${{ github.workspace }}:/home/rust/src" messense/rust-musl-cross:aarch64-musl cargo build --release --target aarch64-unknown-linux-musl
docker run --rm -v "${{ github.workspace }}:/home/rust/src" messense/rust-musl-cross:aarch64-musl cargo build --release
find ./target -type f -name "biomedgps*" -exec ls -l {} \;
- name: Create Release
Expand Down

0 comments on commit 6638a72

Please sign in to comment.