Private GIT

Skip to content
Snippets Groups Projects
Select Git revision
1 result Searching

appveyor.yml

Blame
  • appveyor.yml 1.11 KiB
    version: 0.8.{build}
    skip_tags: true
    image: Visual Studio 2017
    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
    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
      draft: 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