Skip to content

Commit

Permalink
fix cd
Browse files Browse the repository at this point in the history
  • Loading branch information
beac0n committed Aug 4, 2024
1 parent 8dcad30 commit 0ef86c7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ jobs:
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: target/release/client
asset_name: client-${{ github.ref }}-x86_64-linux
asset_name: client-${{ env.TAG_NAME }}-x86_64-linux
asset_content_type: application/octet-stream
- name: Upload Release Asset - Commander
uses: actions/upload-release-asset@v1
Expand All @@ -76,7 +76,7 @@ jobs:
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: target/release/commander
asset_name: commander-${{ github.ref }}-x86_64-linux
asset_name: commander-${{ env.TAG_NAME }}-x86_64-linux
asset_content_type: application/octet-stream
- name: Upload Release Asset - Server
uses: actions/upload-release-asset@v1
Expand All @@ -85,5 +85,5 @@ jobs:
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: target/release/server
asset_name: server-${{ github.ref }}-x86_64-linux
asset_name: server-${{ env.TAG_NAME }}-x86_64-linux
asset_content_type: application/octet-stream

0 comments on commit 0ef86c7

Please sign in to comment.