Skip to content

Commit 88ba5f7

Browse files
committed
fix linux path
1 parent 38e986e commit 88ba5f7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/deployment.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ jobs:
6262
if: contains(matrix.os, 'ubuntu')
6363
run: |
6464
cd target/release
65-
zip -r serial-monitor-${{ matrix.target }}.zip serial-monitor
65+
zip -r serial-monitor-${{ matrix.target }}.zip serial-monitor-rust
6666
mv serial-monitor-${{ matrix.target }}.zip $GITHUB_WORKSPACE/
6767
6868
# Compress for Linux .deb Package
@@ -85,7 +85,7 @@ jobs:
8585
- name: Compress Output (Windows .exe)
8686
if: contains(matrix.os, 'windows')
8787
run: |
88-
Compress-Archive -Path target/release/serial-monitor.exe -DestinationPath serial-monitor-${{ matrix.target }}.exe.zip
88+
Compress-Archive -Path target/release/serial-monitor-rust.exe -DestinationPath serial-monitor-${{ matrix.target }}.exe.zip
8989
Move-Item -Path serial-monitor-${{ matrix.target }}.exe.zip -Destination $env:GITHUB_WORKSPACE
9090
9191
# Compress for Windows (.msi)

0 commit comments

Comments
 (0)