forked from hkatic/clock
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathappveyor.yml
40 lines (30 loc) · 864 Bytes
/
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
version: '{branch}-{build}'
environment:
PY_PYTHON: 2.7-32
install:
- cmd: >-
python -m pip install wheel
py -m pip install scons
py -m pip install markdown
build_script:
- cmd: >-
scons
scons pot
artifacts:
- path: '*.nvda-addon'
name: addon
type: WebDeployPackage
- path: '*.pot'
type: WebDeployPackage
before_deploy:
- ps: $env:REPO_NAME = $env:APPVEYOR_REPO_NAME.Substring($env:APPVEYOR_REPO_NAME.IndexOf('/') + 1)
deploy:
- provider: GitHub
tag: $(APPVEYOR_REPO_TAG_NAME)
release: Release $(APPVEYOR_REPO_TAG_NAME)
description: This is the release $(APPVEYOR_REPO_TAG_NAME) of the $(REPO_NAME) addon for the NVDA screen reader built and uploaded to GitHub using AppVeyor.
auth_token:
secure: D6nDTGin+O15mi48HCwAAu4gXJyUMxQd31t84RdWEFlfzYfgbu4FTH2VLC6l46Fy
artifact: addon
on:
appveyor_repo_tag: true