mirror of https://github.com/Jackett/Jackett
46 lines
1.3 KiB
YAML
46 lines
1.3 KiB
YAML
version: 0.11.{build}
|
|
skip_tags: true
|
|
image:
|
|
- Ubuntu
|
|
- Visual Studio 2017
|
|
environment:
|
|
APPVEYOR_YML_DISABLE_PS_LINUX: true
|
|
configuration: Release
|
|
assembly_info:
|
|
patch: true
|
|
file: '**\AssemblyInfo.*'
|
|
assembly_version: '{version}'
|
|
assembly_file_version: '{version}'
|
|
assembly_informational_version: '{version}'
|
|
dotnet_csproj:
|
|
patch: true
|
|
file: '**\*.csproj'
|
|
version: '{version}'
|
|
package_version: '{version}'
|
|
assembly_version: '{version}'
|
|
file_version: '{version}'
|
|
informational_version: '{version}'
|
|
build_script:
|
|
- ps: .\build.ps1 --target=Windows-Appveyor
|
|
- sh: ./build.sh --target=Linux
|
|
test: off
|
|
before_deploy:
|
|
- ps: ${env:release_description} = ( Get-Content -LiteralPath BuildOutput/ReleaseNotes.txt -Encoding UTF8 ) -join "`n";
|
|
deploy:
|
|
- provider: GitHub
|
|
tag: v$(APPVEYOR_BUILD_VERSION)
|
|
description: $(release_description)
|
|
auth_token:
|
|
secure: hOg+16YTIbq4kO9u4D1YVOTbWDqgCX6mAQYMbnmBBSw2CiUsZh7OKbupoUb3FtWa
|
|
artifact: /^(?:(?![Ee]xperimental).)*$/
|
|
draft: true
|
|
force_update: true
|
|
on:
|
|
branch: master
|
|
notifications:
|
|
- provider: Webhook
|
|
url: https://skyhook.glitch.me/api/webhooks/346588605843767297/_VWi5abKliaWsBmQO7AX69tD28FhqSLjKyLBwkSwwT13uyWJQHx5TSWK_iAs-0RzmyvZ/appveyor
|
|
method: POST
|
|
on_build_success: true
|
|
on_build_failure: true
|
|
on_build_status_changed: true |