forked from ibrahim-s/searchWith
-
Notifications
You must be signed in to change notification settings - Fork 0
/
appveyor.yml
32 lines (28 loc) · 863 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
version: '{branch}-{build}'
environment:
PY_PYTHON: 3.7-32
install:
- cmd: >-
set PATH=C:\Python37;C:\Python37\Scripts;%PATH%
python -m pip install -U pip
pip install wheel
pip install scons
pip install markdown
build_script:
- cmd: scons
artifacts:
- path: '*.nvda-addon'
name: addon
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: lqngkLSbBLNQJdTTPgYncEYsypzVbn5Jx3KzuM3xRAiOBCDu2XBmpf56NeOwyP2K
artifact: addon
on:
appveyor_repo_tag: true