Merge branch 'feature/v4' of https://github.com/tidusjar/Ombi into feature/v4

pull/3400/head
tidusjar 5 years ago
commit 6a39637408

@ -27,6 +27,13 @@ pool:
vmImage: 'ubuntu-latest'
steps:
- task: PowerShell@2
inputs:
targetType: 'inline'
script: |
$response = Invoke-WebRequest -Uri "https://ombireleasenote.azurewebsites.net/api/ReleaseNotesFunction?buildId=$(Build.BuildId)"
Write-Host "##vso[task.setvariable variable=ReleaseNotes;]$response"
- task: Yarn@3
displayName: 'Install UI Dependancies'
inputs:
@ -198,7 +205,7 @@ steps:
tagSource: 'userSpecifiedTag'
tag: '$(gitTag)'
releaseNotesSource: 'inline'
releaseNotesInline: 'test'
releaseNotesInline: '$(ReleaseNotes)'
assets: |
$(Build.ArtifactStagingDirectory)/*.zip
$(Build.ArtifactStagingDirectory)/*.gz

Loading…
Cancel
Save