Compare commits

...

5 Commits

Author SHA1 Message Date
muwoo
7e66b3f3e9 linux 构建包修复 2023-11-16 15:54:58 +08:00
muwoo
342f0f36a5 linux 构建包修复 2023-11-16 15:38:06 +08:00
muwoo
2a75e440ad linux 构建包修复 2023-11-16 15:25:33 +08:00
muwoo
11f53d1e07 linux 构建包修复 2023-11-16 15:19:37 +08:00
muwoo
beb8134539 linux 构建包修复 2023-11-16 15:03:50 +08:00
7 changed files with 9 additions and 9 deletions

View File

@ -46,6 +46,7 @@ jobs:
run: | run: |
sudo apt-get install libxtst-dev libpng++-dev sudo apt-get install libxtst-dev libpng++-dev
sudo apt-get install --no-install-recommends -y icnsutils graphicsmagick xz-utils sudo apt-get install --no-install-recommends -y icnsutils graphicsmagick xz-utils
sudo snap install snapcraft --classic
# step3: yarn # step3: yarn
- name: Yarn install - name: Yarn install
run: | run: |

3
.gitignore vendored
View File

@ -1,6 +1,7 @@
.DS_Store .DS_Store
node_modules node_modules
/build build/*
!build/icons
# local env files # local env files

BIN
build/icons/256x256.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 15 KiB

BIN
build/icons/icon.icns Normal file

Binary file not shown.

BIN
build/icons/icon.ico Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 15 KiB

View File

@ -1,6 +1,6 @@
{ {
"name": "rubick", "name": "rubick",
"version": "4.1.6", "version": "4.1.7",
"author": "muwoo <2424880409@qq.com>", "author": "muwoo <2424880409@qq.com>",
"private": true, "private": true,
"scripts": { "scripts": {

View File

@ -33,10 +33,10 @@ module.exports = {
productName: 'rubick', productName: 'rubick',
appId: 'com.muwoo.rubick', appId: 'com.muwoo.rubick',
compression: 'maximum', compression: 'maximum',
afterPack: './release.js', // afterPack: './release.js',
afterAllArtifactBuild: () => { // afterAllArtifactBuild: () => {
return ['./build/app.asar.gz']; // return ['./build/app.asar.gz'];
}, // },
directories: { directories: {
output: 'build', output: 'build',
}, },
@ -102,9 +102,7 @@ module.exports = {
include: 'public/installer.nsh', include: 'public/installer.nsh',
}, },
linux: { linux: {
icon: 'public/icons/', icon: 'build/icons/',
publish: ['github'],
target: 'deb',
}, },
}, },
}, },