forked from klaudiosinani/tusk
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathappveyor.yml
More file actions
33 lines (33 loc) · 721 Bytes
/
appveyor.yml
File metadata and controls
33 lines (33 loc) · 721 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
platform:
- x64
init:
- git config --global core.autocrlf input
install:
- ps: Install-Product node 6 x64
- npm install npm
- set PATH=%APPDATA%\npm;%PATH%
- npm --version
- node --version
- npm install
- npm prune
build_script:
- npm test
- npm run dist
artifacts:
- path: dist\win\*.nupkg
name: nupkg
- path: dist\win\RELEASES
name: releases
- path: dist\win\*.exe
name: installer
deploy:
description: 'Tusk - Refined Evernote desktop app'
provider: GitHub
artifact: nupkg, releases, installer
auth_token:
secure: 2xNnxLOFbyIDtljWt6jtZveXh+CSZimqyccKv+VlfB1ogmlFBK3J9Re9x6gQuxXS
draft: true
prerelease: false
on:
appveyor_repo_tag: true
shallow_clone: true