mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-08-19 12:59:39 -07:00
Merge branch 'feature/v4' of https://github.com/tidusjar/Ombi into feature/v4
This commit is contained in:
commit
6a39637408
1 changed files with 8 additions and 1 deletions
|
@ -27,6 +27,13 @@ pool:
|
||||||
vmImage: 'ubuntu-latest'
|
vmImage: 'ubuntu-latest'
|
||||||
|
|
||||||
steps:
|
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
|
- task: Yarn@3
|
||||||
displayName: 'Install UI Dependancies'
|
displayName: 'Install UI Dependancies'
|
||||||
inputs:
|
inputs:
|
||||||
|
@ -198,7 +205,7 @@ steps:
|
||||||
tagSource: 'userSpecifiedTag'
|
tagSource: 'userSpecifiedTag'
|
||||||
tag: '$(gitTag)'
|
tag: '$(gitTag)'
|
||||||
releaseNotesSource: 'inline'
|
releaseNotesSource: 'inline'
|
||||||
releaseNotesInline: 'test'
|
releaseNotesInline: '$(ReleaseNotes)'
|
||||||
assets: |
|
assets: |
|
||||||
$(Build.ArtifactStagingDirectory)/*.zip
|
$(Build.ArtifactStagingDirectory)/*.zip
|
||||||
$(Build.ArtifactStagingDirectory)/*.gz
|
$(Build.ArtifactStagingDirectory)/*.gz
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue