forked from bitshares/bitshares-ui
-
Notifications
You must be signed in to change notification settings - Fork 17
/
appveyor.yml
42 lines (42 loc) · 1.33 KB
/
appveyor.yml
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
34
35
36
37
38
39
40
41
42
version: 1.0.{build}
environment:
nodejs_version: 16.13
install:
# Get the latest stable version of Node.js or io.js
- ps: Install-Product node $env:nodejs_version
# install modules
# - npm ci
- corepack enable
- yarn
build: off
platform:
- x64
before_package: echo Before package
after_test:
- 7z a build\html5_history_dist_%APPVEYOR_REPO_TAG_NAME%.zip %APPVEYOR_BUILD_FOLDER%\build\dist -r
- 7z a build\hash_history_dist_%APPVEYOR_REPO_TAG_NAME%.zip %APPVEYOR_BUILD_FOLDER%\build\hash-history -r
- node ./write_digest.js
test_script:
- npm run package
- npm run build
- npm run build-hash
artifacts:
- path: build\binaries\*.exe
name: WindowsApp
- path: build\html5_history_dist_*.zip
name: html5_history_dist
- path: build\hash_history_dist_*.zip
name: hash_history_dist
- path: build\release-checksums-*
name: release-checksums-windows
deploy:
provider: GitHub
release: $(APPVEYOR_REPO_TAG_NAME)
description: "Automated release from Travis CI with added files from AppVeyor build"
auth_token:
secure: UTxsw17DNQ21ON1hJE3RJHK78Ztp33Z5jk10isUxJyOS1iIdzFcyzln6SsROVEDt
artifact: WindowsApp, html5_history_dist, hash_history_dist, release-checksums-windows
draft: true
force_update: true
on:
appveyor_repo_tag: true