summaryrefslogtreecommitdiffstats
path: root/.appveyor.yml
blob: d0087686a97b3cbee559a4b608e96ea048a4eeab (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
install:
  - set QTDIR=C:\Qt\5.13\mingw73_32
  - choco install -y InnoSetup
  - set PATH=%QTDIR%\bin;C:\Qt\Tools\mingw530_32\bin;%PATH%;"C:\Program Files (x86)\Inno Setup 5"
build_script:
  - qmake qtpass.pro CONFIG+=static
  - mingw32-make
#  - mingw32-make check
#after_build:
  - cmd: copy README.md src\release\README.txt
  - cmd: copy LICENSE src\release\LICENSE.txt
  - iscc qtpass.iss
artifacts:
  - path: Output\qtpass-*.exe
  - path: main\release\qtpass.exe
deploy:
  provider: GitHub
  auth_token:
    secure: YfscG1DR0+kApThPXxQSr+ZEjUOUlIG0Tqc5+90IFsUInyICRRMdbJsbxR2qhq/p
  artifact: /qtpass-[0-9]+\.[0-9]+\.[0-9]+\.exe/
  draft: true
  prerelease: false
  on:
    appveyor_repo_tag: true