From 9711035be37975ae99d638f234b4cfc057752045 Mon Sep 17 00:00:00 2001 From: Jingcheng Yang Date: Tue, 5 Mar 2024 09:59:55 -0500 Subject: [PATCH] [Fix Bug] Wrong binary paths. --- .github/workflows/publish-bin.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/publish-bin.yml b/.github/workflows/publish-bin.yml index b2f39da..23b2009 100644 --- a/.github/workflows/publish-bin.yml +++ b/.github/workflows/publish-bin.yml @@ -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 @@ -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 @@ -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 @@ -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