Skip to content

Commit

Permalink
[Fix Bug] Cannot show the binaries.
Browse files Browse the repository at this point in the history
  • Loading branch information
yjcyxky committed Mar 5, 2024
1 parent bb1d477 commit 8ad4bd3
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 @@ -39,12 +39,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
find ./target -type f -name "biomedgps*" -exec ls -l {}
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
find ./target -type f -name "biomedgps*" -exec ls -l {}
find ./target -type f -name "biomedgps*" -exec ls -l {} \;
- name: Create Release
id: create_release
Expand Down

0 comments on commit 8ad4bd3

Please sign in to comment.