mirror of
https://github.com/microsoft/PowerToys.git
synced 2024-12-13 11:09:28 +08:00
340087076e
not sure why I can't appveyor environment
39 lines
824 B
YAML
39 lines
824 B
YAML
version: 1.3.{build}
|
|
os: Visual Studio 2015
|
|
configuration: Release
|
|
platform: Any CPU
|
|
assembly_info:
|
|
patch: true
|
|
file: AssemblyInfo.*
|
|
assembly_version: '{version}'
|
|
assembly_file_version: '{version}'
|
|
assembly_informational_version: '{version}'
|
|
before_build:
|
|
- ps: nuget restore
|
|
build:
|
|
project: Wox.sln
|
|
after_test:
|
|
- ps: >-
|
|
.\Deploy\nuget.ps1
|
|
|
|
.\Deploy\binary_zip.ps1
|
|
|
|
.\Deploy\squirrel_installer.ps1
|
|
artifacts:
|
|
- path: 'Wox-*.zip'
|
|
name: zipped_binary
|
|
- path: '*.nupkg'
|
|
name: nuget_package
|
|
- path: '\Releases\*.exe'
|
|
name: installer
|
|
- path: '\Releases\*.nupkg'
|
|
name: installer
|
|
- path: 'Releases\RELEASES'
|
|
name: installer
|
|
deploy:
|
|
provider: NuGet
|
|
api_key:
|
|
secure: yybUOFgBuGVpbmOVZxsurC8OpkClzt9dR+/54WpMWcq6b6oyMatciaelRPnXsjRn
|
|
artifact: nuget_package
|
|
on:
|
|
branch: api |