Skip to content

Commit 42e2960

Browse files
committed
no message
1 parent 2258dc5 commit 42e2960

File tree

2 files changed

+33
-2
lines changed

2 files changed

+33
-2
lines changed

appveyor.yml

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
version: {build}
2+
3+
branches:
4+
only:
5+
- master
6+
7+
image: Visual Studio 2017
8+
9+
platform:
10+
- x64
11+
12+
cache:
13+
- node_modules
14+
- '%APPDATA%\npm-cache'
15+
- '%USERPROFILE%\.electron'
16+
- '%USERPROFILE%\AppData\Local\Yarn\cache'
17+
18+
init:
19+
- git config --global core.autocrlf input
20+
21+
install:
22+
- ps: Install-Product node 10 x64
23+
- git reset --hard HEAD
24+
- yarn
25+
- node --version
26+
27+
build_script:
28+
- yarn build
29+
- yarn run publish
30+
31+
test: off

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
{
22
"name": "folder-explorer",
3-
"version": "1.0.0",
3+
"version": "1.0.1",
44
"private": true,
55
"scripts": {
66
"lint": "vue-cli-service lint",
77
"build": "vue-cli-service electron:build",
88
"dev": "vue-cli-service electron:serve",
99
"postinstall": "electron-builder install-app-deps",
1010
"postuninstall": "electron-builder install-app-deps",
11-
"publish": "electron-builder --publish always",
11+
"publish": "electron-builder --publish onTagOrDraft",
1212
"electron:generate-icons": "electron-icon-builder --input=./public/icon.png --output=build --flatten"
1313
},
1414
"main": "background.js",

0 commit comments

Comments
 (0)