mirror of https://github.com/Ombi-app/Ombi
31 lines
718 B
31 lines
718 B
variables:
|
|
- name: "BuildConfiguration"
|
|
value: "Release"
|
|
|
|
- name: "vmImage"
|
|
value: "ubuntu-latest"
|
|
|
|
- name: "Solution"
|
|
value: "**/*.sln"
|
|
|
|
- name: "TestProject"
|
|
value: "**/*.Tests.csproj"
|
|
|
|
- name: "NetCoreVersion"
|
|
value: "5.0"
|
|
|
|
- name: "PublishLocation"
|
|
value: "$(Build.SourcesDirectory)/src/Ombi/bin/Release/netcoreapp$(NetCoreVersion)"
|
|
|
|
- name: "GitTag"
|
|
value: "v$(buildVersion)"
|
|
|
|
- name: "UiLocation"
|
|
value: "$(Build.SourcesDirectory)/src/Ombi/ClientApp/"
|
|
|
|
- name: "BuildVersion"
|
|
value: "4.0.$(Build.BuildId)"
|
|
|
|
- name: isMain
|
|
value: $[or(eq(variables['Build.SourceBranch'], 'refs/heads/develop'), eq(variables['Build.SourceBranch'], 'refs/heads/master'))]
|