Skip to content

Commit

Permalink
[Fix Bug] Wrong binary paths.
Browse files Browse the repository at this point in the history
  • Loading branch information
yjcyxky committed Mar 5, 2024
1 parent 8ad4bd3 commit 9711035
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/publish-bin.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: ./target/x86_64-unknown-linux-musl/biomedgps
asset_path: ./target/x86_64-unknown-linux-musl/release/biomedgps
asset_name: biomedgps-x86_64-unknown-linux-musl
asset_content_type: application/octet-stream

Expand All @@ -73,7 +73,7 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: ./target/x86_64-unknown-linux-musl/biomedgps-cli
asset_path: ./target/x86_64-unknown-linux-musl/release/biomedgps-cli
asset_name: biomedgps-cli-x86_64-unknown-linux-musl
asset_content_type: application/octet-stream

Expand All @@ -83,7 +83,7 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: ./target/aarch64-unknown-linux-musl/biomedgps
asset_path: ./target/aarch64-unknown-linux-musl/release/biomedgps
asset_name: biomedgps-aarch64-unknown-linux-musl
asset_content_type: application/octet-stream

Expand All @@ -93,6 +93,6 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: ./target/aarch64-unknown-linux-musl/biomedgps-cli
asset_path: ./target/aarch64-unknown-linux-musl/release/biomedgps-cli
asset_name: biomedgps-cli-aarch64-unknown-linux-musl
asset_content_type: application/octet-stream

0 comments on commit 9711035

Please sign in to comment.