Skip to content

Commit

Permalink
fix release uploads
Browse files Browse the repository at this point in the history
  • Loading branch information
hacknus committed Jan 18, 2025
1 parent b8d04b8 commit 2758e26
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/deployment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
with:
upload_url: ${{ github.event.release.upload_url }}
asset_path: ./target/release/bundle/deb/serial-monitor.deb.zip
asset_name: serial-monitor-i686-unknown-linux-gnu.deb.zip
asset_name: serial-monitor-x86_64-unknown-linux-gnu.deb.zip
asset_content_type: binary

build-linux-bin:
Expand All @@ -52,7 +52,7 @@ jobs:
with:
upload_url: ${{ github.event.release.upload_url }}
asset_path: ./target/release/serial-monitor.zip
asset_name: serial-monitor-i686-unknown-linux-gnu-bin.zip
asset_name: serial-monitor-x86_64-unknown-linux-gnu-bin.zip
asset_content_type: binary

build-macos-x86:
Expand All @@ -74,7 +74,7 @@ jobs:
with:
upload_url: ${{ github.event.release.upload_url }}
asset_path: ./target/release/bundle/osx/serial-monitor.app.zip
asset_name: serial-monitor-i686-apple-darwin.app.zip
asset_name: serial-monitor-aarch64-apple-darwin.app.zip
asset_content_type: binary

build-macos-arm:
Expand Down Expand Up @@ -120,7 +120,7 @@ jobs:
with:
upload_url: ${{ github.event.release.upload_url }}
asset_path: target/release/serial-monitor.exe.zip
asset_name: serial-monitor-i686-pc-windows-msvc.exe.zip
asset_name: serial-monitor-x86_64-pc-windows-msvc.exe.zip
asset_content_type: binary

build-windows-msi:
Expand All @@ -142,5 +142,5 @@ jobs:
with:
upload_url: ${{ github.event.release.upload_url }}
asset_path: target/wix/serial-monitor.msi.zip
asset_name: serial-monitor-i686-pc-windows-msvc.msi.zip
asset_name: serial-monitor-x86_64-pc-windows-msvc.msi.zip
asset_content_type: binary

0 comments on commit 2758e26

Please sign in to comment.