Merge pull request #73 from NicolasConstant/topic_packager_ci
Added icons, tests report and snap release
25
appveyor.yml
|
@ -19,4 +19,27 @@ version: '{build}'
|
|||
shallow_clone: true
|
||||
clone_depth: 1
|
||||
test_script:
|
||||
- npm run dist
|
||||
- ps: >-
|
||||
npm run test-nowatch
|
||||
|
||||
$wc = New-Object 'System.Net.WebClient'
|
||||
|
||||
Get-ChildItem . -Name -Recurse 'TESTS-*.xml' |
|
||||
|
||||
Foreach-Object {
|
||||
$wc.UploadFile("https://ci.appveyor.com/api/testresults/junit/$($env:APPVEYOR_JOB_ID)", (Resolve-Path $_))
|
||||
}
|
||||
- npm run dist
|
||||
artifacts:
|
||||
- path: dist
|
||||
deploy:
|
||||
- provider: FTP
|
||||
host: home205977321.1and1-data.host
|
||||
protocol: sftp
|
||||
username: u45308485-sengi
|
||||
password:
|
||||
secure: Sk3NZwuaYK9hTIQ3kgIIQEc8SmaPDVGvGpgsZzFEzoVLuy4WxVfvKQtegW9oXaj7
|
||||
folder: /
|
||||
application: dist.zip
|
||||
on:
|
||||
branch: master
|
After Width: | Height: | Size: 59 KiB |
After Width: | Height: | Size: 18 KiB |
After Width: | Height: | Size: 12 KiB |
After Width: | Height: | Size: 12 KiB |
After Width: | Height: | Size: 25 KiB |
After Width: | Height: | Size: 12 KiB |
After Width: | Height: | Size: 14 KiB |
After Width: | Height: | Size: 42 KiB |
After Width: | Height: | Size: 14 KiB |
After Width: | Height: | Size: 16 KiB |
After Width: | Height: | Size: 34 KiB |
17
package.json
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "sengi",
|
||||
"version": "0.5.2",
|
||||
"version": "0.5.1",
|
||||
"license": "AGPL-3.0-or-later",
|
||||
"main": "main-electron.js",
|
||||
"author": {
|
||||
|
@ -103,14 +103,25 @@
|
|||
}
|
||||
]
|
||||
},
|
||||
"mac": {
|
||||
"icon": "assets/icons/mac/icon.icns",
|
||||
"target": [
|
||||
"dmg"
|
||||
],
|
||||
"category": "public.app-category.social-networking"
|
||||
},
|
||||
"win": {
|
||||
"icon": "assets/icons/win/icon.ico",
|
||||
"target": "nsis"
|
||||
},
|
||||
"linux": {
|
||||
"icon": "assets/icons/png",
|
||||
"target": [
|
||||
"AppImage",
|
||||
"deb"
|
||||
]
|
||||
"deb",
|
||||
"snap"
|
||||
],
|
||||
"category": "Network"
|
||||
}
|
||||
}
|
||||
}
|