Never publish artifacts

This commit is contained in:
Yuya Ochiai 2017-03-03 00:10:37 +09:00
parent eaa24c599f
commit 0f35b14f9b

View file

@ -29,9 +29,9 @@
"test": "npm-run-all build test:* lint:*",
"test:app": "mocha --reporter mocha-circleci-reporter --recursive test/specs",
"package:all": "npm-run-all package:windows package:mac package:linux",
"package:windows": "build --win --x64 --ia32 --em.name=mattermost && npm run manipulate-windows-zip",
"package:mac": "build --mac",
"package:linux": "build --linux --x64 --ia32 --em.name=mattermost-desktop",
"package:windows": "build --win --x64 --ia32 --em.name=mattermost --publish=never && npm run manipulate-windows-zip",
"package:mac": "build --mac --publish=never",
"package:linux": "build --linux --x64 --ia32 --em.name=mattermost-desktop --publish=never",
"manipulate-windows-zip": "node scripts/manipulate_windows_zip.js",
"lint:js": "eslint --ext .js --ext .jsx ."
},