Skip to content

Commit b8d04b8

Browse files
committed
fix release uploads
1 parent 8cf8d07 commit b8d04b8

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/workflows/deployment.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ env:
1111
jobs:
1212
build-linux-deb:
1313
permissions: write-all
14-
name: linux
14+
name: linux deb
1515
runs-on: ubuntu-20.04
1616
steps:
1717
- uses: actions/checkout@v3
@@ -35,7 +35,7 @@ jobs:
3535

3636
build-linux-bin:
3737
permissions: write-all
38-
name: linux
38+
name: linux bin
3939
runs-on: ubuntu-20.04
4040
steps:
4141
- uses: actions/checkout@v3
@@ -51,7 +51,7 @@ jobs:
5151
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
5252
with:
5353
upload_url: ${{ github.event.release.upload_url }}
54-
asset_path: ./target/release/bundle/deb/serial-monitor.zip
54+
asset_path: ./target/release/serial-monitor.zip
5555
asset_name: serial-monitor-i686-unknown-linux-gnu-bin.zip
5656
asset_content_type: binary
5757

@@ -101,7 +101,7 @@ jobs:
101101

102102
build-windows-exe:
103103
permissions: write-all
104-
name: windows
104+
name: windows exe
105105
runs-on: windows-2019
106106
steps:
107107
- uses: actions/checkout@v3
@@ -119,13 +119,13 @@ jobs:
119119
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
120120
with:
121121
upload_url: ${{ github.event.release.upload_url }}
122-
asset_path: target/release/rust-serial-monitor.exe.zip
122+
asset_path: target/release/serial-monitor.exe.zip
123123
asset_name: serial-monitor-i686-pc-windows-msvc.exe.zip
124124
asset_content_type: binary
125125

126126
build-windows-msi:
127127
permissions: write-all
128-
name: windows
128+
name: windows msi
129129
runs-on: windows-2019
130130
steps:
131131
- uses: actions/checkout@v3

0 commit comments

Comments
 (0)