This commit is contained in:
Alexey Kasyanchuk 2019-07-22 00:34:33 +03:00
parent bac310d766
commit 5f0101036d
3 changed files with 3 additions and 2 deletions

1
.gitignore vendored
View File

@ -20,3 +20,4 @@ node.exe
/app/app.js /app/app.js
/app/background.js /app/background.js
/app/**/*.map /app/**/*.map

View File

@ -8,7 +8,7 @@
}, },
{ {
"path": "@semantic-release/exec", "path": "@semantic-release/exec",
"cmd": "brew install rpm && brew install dpkg && brew install jq && npm run build -- --linux --win --mac && cd dist/win-unpacked && mkdir data && cd .. && zip -vr rats-search-`node -p \"require('../package.json').version\"`-portable.win.x64.zip win-unpacked/ && cd win-ia32-unpacked && mkdir data && cd .. && zip -vr rats-search-`node -p \"require('../package.json').version\"`-portable.win.win32.zip win-ia32-unpacked/" "cmd": "brew install rpm && brew install dpkg && brew install jq && brew install xz && npm run build -- --linux --win --mac && cd dist/win-unpacked && mkdir data && cd .. && zip -vr rats-search-`node -p \"require('../package.json').version\"`-portable.win.x64.zip win-unpacked/ && cd win-ia32-unpacked && mkdir data && cd .. && zip -vr rats-search-`node -p \"require('../package.json').version\"`-portable.win.win32.zip win-ia32-unpacked/"
}, },
"@semantic-release/github" "@semantic-release/github"
], ],

View File

@ -4,7 +4,7 @@ jobs:
os: osx os: osx
osx_image: xcode9.0 osx_image: xcode9.0
language: node_js language: node_js
node_js: "8" node_js: "12"
cache: cache:
yarn: true yarn: true