Skip to content

Commit

Permalink
Merge branch 'master' of github.com:cossim/coss-client
Browse files Browse the repository at this point in the history
  • Loading branch information
xie392 committed May 31, 2024
2 parents 49f38c1 + fec36e2 commit 9baebfe
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/build-electron.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,8 @@ jobs:

- name: Build/release Electron app
uses: Yan-Jobs/[email protected]
env:
EP_RELEASE: true
with:
# GitHub token, automatically provided to the action
# (No need to define this secret in the repo settings)
Expand Down
6 changes: 3 additions & 3 deletions electron-builder.json5
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
files: ['dist', 'dist-electron'],
mac: {
target: ['dmg'],
artifactName: '${productName}-Mac-${version}-Installer.${ext}'
artifactName: '${productName}-${os}-${arch}-${version}-Installer.${ext}'
},
win: {
target: [
Expand All @@ -19,7 +19,7 @@
arch: ['x64']
}
],
artifactName: '${productName}-Windows-${version}-Setup.${ext}'
artifactName: '${productName}-${os}-${arch}-${version}-Setup.${ext}'
},
nsis: {
oneClick: false,
Expand All @@ -29,6 +29,6 @@
},
linux: {
target: ['AppImage'],
artifactName: '${productName}-Linux-${version}.${ext}'
artifactName: '${productName}-${os}-${arch}-${version}.${ext}'
}
}

0 comments on commit 9baebfe

Please sign in to comment.