mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 09:07:25 +08:00
32 lines
1.4 KiB
YAML
32 lines
1.4 KiB
YAML
clone_depth: 1
|
|
version: '{build}'
|
|
skip_non_tags: true
|
|
image: Visual Studio 2017
|
|
install:
|
|
- git clone https://github.com/ppy/osu-deploy
|
|
before_build:
|
|
- ps: if($env:appveyor_repo_tag -eq 'True') { Update-AppveyorBuild -Version $env:appveyor_repo_tag_name }
|
|
- cmd: git submodule update --init --recursive --depth=5
|
|
- cmd: nuget restore -verbosity quiet
|
|
build_script:
|
|
- ps: iex ((New-Object Net.WebClient).DownloadString('https://raw.githubusercontent.com/appveyor/secure-file/master/install.ps1'))
|
|
- appveyor DownloadFile https://puu.sh/A6g5K/4d08705438.enc # signing certificate
|
|
- cmd: appveyor-tools\secure-file -decrypt 4d08705438.enc -secret %decode_secret% -out %HOMEPATH%\deanherbert.pfx
|
|
- appveyor DownloadFile https://puu.sh/A6g75/fdc6f19b04.enc # deploy configuration
|
|
- cd osu-deploy
|
|
- nuget restore -verbosity quiet
|
|
- msbuild osu.Desktop.Deploy.csproj
|
|
- cmd: ..\appveyor-tools\secure-file -decrypt ..\fdc6f19b04.enc -secret %decode_secret% -out bin\Debug\net471\osu.Desktop.Deploy.exe.config
|
|
- cd bin\Debug\net471\
|
|
- osu.Desktop.Deploy.exe %code_signing_password% %APPVEYOR_REPO_TAG_NAME%
|
|
environment:
|
|
TargetFramework: net471
|
|
decode_secret:
|
|
secure: i67IC2xj6DjjxmA6Oj2jing3+MwzLkq6CbGsjfZ7rdY=
|
|
code_signing_password:
|
|
secure: 34tLNqvjmmZEi97MLKfrnQ==
|
|
artifacts:
|
|
- path: 'Releases\*'
|
|
deploy:
|
|
- provider: Environment
|
|
name: github |