Skip to content

Commit d6abd0c

Browse files
committed
fix: add ox name to builds file name
1 parent d9c0f99 commit d6abd0c

3 files changed

Lines changed: 8 additions & 11 deletions

File tree

.github/workflows/ci.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -26,26 +26,26 @@ jobs:
2626
- os: windows-latest
2727
build_script: pnpm run dist:win:x64
2828
artifact_name: windows-x64
29-
artifact_path: 'dist/*-x64.exe'
29+
artifact_path: 'dist/*-win-x64.exe'
3030
# Windows ARM64
3131
- os: windows-latest
3232
build_script: pnpm run dist:win:arm64
3333
artifact_name: windows-arm64
34-
artifact_path: 'dist/*-arm64.exe'
34+
artifact_path: 'dist/*-win-arm64.exe'
3535
# Linux x64
3636
- os: ubuntu-latest
3737
build_script: pnpm run dist:linux:x64
3838
artifact_name: linux-x64
3939
artifact_path: |-
40-
dist/*-x64.AppImage
41-
dist/*-x64.deb
40+
dist/*-linux-x64.AppImage
41+
dist/*-linux-x64.deb
4242
# Linux ARM64
4343
- os: ubuntu-latest
4444
build_script: pnpm run dist:linux:arm64
4545
artifact_name: linux-arm64
4646
artifact_path: |-
47-
dist/*-arm64.AppImage
48-
dist/*-arm64.deb
47+
dist/*-linux-arm64.AppImage
48+
dist/*-linux-arm64.deb
4949
5050
steps:
5151
- name: Checkout code

electron-builder.json

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"appId": "com.algoux.kessoku-the-broadcaster",
33
"productName": "Kessoku the Broadcaster",
4-
"artifactName": "${productName}-${version}-${arch}.${ext}",
4+
"artifactName": "${productName}-${version}-${os}-${arch}.${ext}",
55
"files": ["dist/electron/**", "dist/ui/**"],
66
"extraResources": [
77
"dist/electron/preload.cts",
@@ -27,9 +27,6 @@
2727
"category": "Utility",
2828
"icon": "resources/icon/icon.png"
2929
},
30-
"deb": {
31-
"artifactName": "${productName}-${version}-${arch}.${ext}"
32-
},
3330
"win": {
3431
"target": "nsis",
3532
"icon": "resources/icon/icon.ico"

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "Kessoku-the-Broadcaster",
33
"private": true,
4-
"version": "0.0.2-alpha",
4+
"version": "0.0.3-alpha",
55
"main": "dist/electron/main.js",
66
"author": {
77
"name": "algoUX",

0 commit comments

Comments
 (0)