Build Test (Artifact Names and travis.yml cleanup)

This commit is contained in:
JannisX11 2019-01-02 15:04:45 +01:00 committed by GitHub
parent 74390aa21e
commit f90fb19fce
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 7 additions and 20 deletions

View File

@ -23,23 +23,10 @@ cache:
directories:
- node_modules
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-4.8
- icnsutils
- graphicsmagick
- libgnome-keyring-dev
- xz-utils
- xorriso
- xvfb
install:
- nvm install 10
- npm install electron-builder
script:
- npm run dist

View File

@ -14,8 +14,10 @@
"main": "main.js",
"build": {
"appId": "blockbench",
"productName": "Blockbench",
"mac": {
"category": "macOS.application"
"category": "macOS.application",
"target": "dmg"
},
"files": [
"assets/",
@ -34,6 +36,7 @@
"icon.png"
],
"dmg": {
"artifactName": "${productName}_${version}.${ext}",
"contents": [
{
"x": 130,
@ -48,21 +51,18 @@
]
},
"win": {
"artifactName": "${productName}_${arch}_${version}.${ext}",
"target": "nsis"
},
"linux": {
"artifactName": "${productName}_${version}.${ext}",
"target": [
"AppImage",
"deb"
],
"category": ""
}
},
"mac": {
"target": "dmg"
},
"scripts": {
"pack": "build --dir",
"dist": "build --publish=always",
"dist32": "build --ia32 --publish=always"
},