mirror of https://github.com/Ombi-app/Ombi
Merge branch 'develop' of https://github.com/tidusjar/Ombi into develop
commit
6fdeeea87b
@ -1,118 +0,0 @@
|
||||
|
||||
variables:
|
||||
- template: templates/variables.yml
|
||||
|
||||
stages:
|
||||
- stage: build
|
||||
jobs:
|
||||
- job: Build
|
||||
pool:
|
||||
vmImage: ${{ variables.vmImage }}
|
||||
steps:
|
||||
- template: templates/build-steps.yml
|
||||
|
||||
- stage: publish
|
||||
jobs:
|
||||
- job:
|
||||
strategy:
|
||||
matrix:
|
||||
win10-x64:
|
||||
runtime: win10-x64
|
||||
format: zip
|
||||
compression: zip
|
||||
win10-x86:
|
||||
runtime: win10-x86
|
||||
format: zip
|
||||
compression: zip
|
||||
osx-x64:
|
||||
runtime: osx-x64
|
||||
format: tar.gz
|
||||
compression: tar
|
||||
linux-x64:
|
||||
runtime: linux-x64
|
||||
format: tar.gz
|
||||
compression: tar
|
||||
linux-arm:
|
||||
runtime: linux-arm
|
||||
format: tar.gz
|
||||
compression: tar
|
||||
linux-arm64:
|
||||
runtime: linux-arm64
|
||||
format: tar.gz
|
||||
compression: tar
|
||||
pool:
|
||||
vmImage: ${{ variables.vmImage }}
|
||||
steps:
|
||||
- template: templates/publish-os-steps.yml
|
||||
|
||||
# - stage: deploy
|
||||
# jobs:
|
||||
# - job:
|
||||
# condition: and(succeeded(), eq(variables.isMain, true))
|
||||
# steps:
|
||||
# - task: DownloadPipelineArtifact@2
|
||||
# inputs:
|
||||
# buildType: 'current'
|
||||
# targetPath: '$(System.ArtifactsDirectory)'
|
||||
|
||||
# - task: PowerShell@2
|
||||
# displayName: 'Get Release Notes'
|
||||
# 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: GitHubRelease@1
|
||||
# displayName: 'Ombi.Releases Release'
|
||||
# inputs:
|
||||
# gitHubConnection: 'PAT'
|
||||
# repositoryName: 'Ombi-app/Ombi.Releases'
|
||||
# action: 'create'
|
||||
# target: 'c7fcbb77b58aef1076d635a9ef99e4374abc8672'
|
||||
# tagSource: 'userSpecifiedTag'
|
||||
# tag: '$(gitTag)'
|
||||
# releaseNotesSource: 'inline'
|
||||
# releaseNotesInline: '$(ReleaseNotes)'
|
||||
# assets: |
|
||||
# $(System.ArtifactsDirectory)/**/*.zip
|
||||
# $(System.ArtifactsDirectory)/**/*.tar.gz
|
||||
# isPreRelease: true
|
||||
# changeLogCompareToRelease: 'lastNonDraftRelease'
|
||||
# changeLogType: 'commitBased'
|
||||
|
||||
# - task: GitHubRelease@1
|
||||
# displayName: 'Ombi Release'
|
||||
# inputs:
|
||||
# gitHubConnection: 'PAT'
|
||||
# repositoryName: 'Ombi-app/Ombi'
|
||||
# action: 'create'
|
||||
# target: '$(Build.SourceVersion)'
|
||||
# tagSource: 'userSpecifiedTag'
|
||||
# tag: '$(gitTag)'
|
||||
# releaseNotesSource: 'inline'
|
||||
# releaseNotesInline: '$(ReleaseNotes)'
|
||||
# assets: |
|
||||
# $(System.ArtifactsDirectory)/**/*.zip
|
||||
# $(System.ArtifactsDirectory)/**/*.tar.gz
|
||||
# isPreRelease: true
|
||||
# changeLogCompareToRelease: 'lastNonDraftRelease'
|
||||
# changeLogType: 'commitBased'
|
||||
|
||||
# - task: PowerShell@2
|
||||
# displayName: "Trigger APT build"
|
||||
# inputs:
|
||||
# targetType: 'inline'
|
||||
# script: |
|
||||
# $body = @{
|
||||
# "ref"="main"
|
||||
# "inputs"= @{"version"= "$(gitTag)"}
|
||||
# } | ConvertTo-Json
|
||||
|
||||
# $header = @{
|
||||
# "Accept"="application/vnd.github.v3+json"
|
||||
# "Authorization"="Bearer $(APTPAT)"
|
||||
# "User-Agent"="Ombi"
|
||||
# }
|
||||
|
||||
# Invoke-RestMethod -Uri "https://api.github.com/repos/Ombi-app/Ombi.Apt/actions/workflows/build-deb.yml/dispatches" -Method 'Post' -Body $body -Headers $header
|
@ -1,34 +0,0 @@
|
||||
steps:
|
||||
## This is needed due to https://github.com/microsoft/azure-pipelines-tasks/issues/8429
|
||||
## For the set version tool...
|
||||
- task: DotNetCoreInstaller@1
|
||||
displayName: 'Use .NET Core sdk '
|
||||
inputs:
|
||||
packageType: 'sdk'
|
||||
version: '5.x'
|
||||
|
||||
- task: Yarn@3
|
||||
displayName: 'Install UI Dependancies'
|
||||
inputs:
|
||||
projectDirectory: '$(UiLocation)'
|
||||
arguments: 'install'
|
||||
|
||||
- task: Yarn@3
|
||||
displayName: 'Build and Publish Angular App'
|
||||
inputs:
|
||||
projectDirectory: '$(UiLocation)'
|
||||
arguments: 'run build'
|
||||
|
||||
- task: PublishPipelineArtifact@1
|
||||
inputs:
|
||||
targetPath: '$(UiLocation)dist'
|
||||
artifact: 'angular_dist'
|
||||
publishLocation: 'pipeline'
|
||||
|
||||
- task: DotNetCoreCLI@2
|
||||
displayName: Run Unit Tests
|
||||
inputs:
|
||||
command: 'custom'
|
||||
projects: '$(TestProject)'
|
||||
custom: 'test'
|
||||
continueOnError: false
|
@ -1,57 +0,0 @@
|
||||
steps:
|
||||
- task: DotNetCoreInstaller@1
|
||||
displayName: 'Use .NET Core sdk '
|
||||
inputs:
|
||||
packageType: 'sdk'
|
||||
version: '5.x'
|
||||
|
||||
- task: DotNetCoreInstaller@1
|
||||
displayName: 'Use .NET Core sdk for versioning'
|
||||
inputs:
|
||||
packageType: 'sdk'
|
||||
version: '3.1.x'
|
||||
|
||||
- task: PowerShell@2
|
||||
displayName: 'Set Version'
|
||||
inputs:
|
||||
targetType: 'inline'
|
||||
script: |
|
||||
dotnet tool install -g dotnet-setversion
|
||||
setversion -r $(BuildVersion)
|
||||
|
||||
- task: DotNetCoreCLI@2
|
||||
displayName: 'publish $(runtime)'
|
||||
inputs:
|
||||
command: 'publish'
|
||||
publishWebProjects: true
|
||||
arguments: '-c $(BuildConfiguration) -r "$(runtime)" -o $(Build.ArtifactStagingDirectory)/$(runtime) --self-contained true -p:PublishSingleFile=true'
|
||||
zipAfterPublish: false
|
||||
modifyOutputPath: false
|
||||
|
||||
- task: DownloadPipelineArtifact@2
|
||||
inputs:
|
||||
buildType: 'current'
|
||||
artifactName: 'angular_dist'
|
||||
targetPath: '$(Build.ArtifactStagingDirectory)/angular_dist'
|
||||
|
||||
- task: CopyFiles@2
|
||||
displayName: 'Copy Angular App $(runtime)'
|
||||
inputs:
|
||||
SourceFolder: '$(Build.ArtifactStagingDirectory)/angular_dist'
|
||||
Contents: '**'
|
||||
TargetFolder: '$(Build.ArtifactStagingDirectory)/$(runtime)/ClientApp/dist'
|
||||
|
||||
- task: ArchiveFiles@2
|
||||
displayName: 'Zip $(runtime)'
|
||||
inputs:
|
||||
rootFolderOrFile: '$(Build.ArtifactStagingDirectory)/$(runtime)'
|
||||
includeRootFolder: false
|
||||
archiveType: $(compression)
|
||||
archiveFile: '$(Build.ArtifactStagingDirectory)/$(runtime).$(format)'
|
||||
replaceExistingArchive: true
|
||||
|
||||
- task: PublishPipelineArtifact@1
|
||||
inputs:
|
||||
targetPath: '$(Build.ArtifactStagingDirectory)/$(runtime).$(format)'
|
||||
artifact: '$(runtime)'
|
||||
publishLocation: 'pipeline'
|
@ -1,30 +0,0 @@
|
||||
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'))]
|
@ -1,48 +1,38 @@
|
||||
## [4.0.1510](https://github.com/Ombi-app/Ombi/compare/v4.0.1602...v4.0.1510) (2021-10-07)
|
||||
## [4.1.1](https://github.com/Ombi-app/Ombi/compare/v4.0.1511...v4.1.1) (2021-10-08)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* :bookmark: Set version to correct number ([1a7b9b5](https://github.com/Ombi-app/Ombi/commit/1a7b9b50578675532fdb0f656cbaf51306166b84))
|
||||
* :bug: bump ver ([5207b21](https://github.com/Ombi-app/Ombi/commit/5207b21f2f98cc63f16a72bd79ecac6abf838139))
|
||||
* :bug: Set the real tag version now ([9287d83](https://github.com/Ombi-app/Ombi/commit/9287d83c134e62c9f0a5d271cfd88eefc9dcae39))
|
||||
* :bug: Stop Devops from building and releasing, GH Actions will now call the APT Build ([1fda2a1](https://github.com/Ombi-app/Ombi/commit/1fda2a1d37c1182177fdca55e38b98a85dc1fe05))
|
||||
* :bug: updated contributors PAT ([a1d22db](https://github.com/Ombi-app/Ombi/commit/a1d22db4d14c63c39e79d47d99cc7ca2efe393df))
|
||||
* :bug: Upload the correct artifacts ([a249805](https://github.com/Ombi-app/Ombi/commit/a2498051cfd679dd19206571883a08d77e159e2b))
|
||||
* try and fix the artifact upload ([fb9ff4c](https://github.com/Ombi-app/Ombi/commit/fb9ff4ccde9121dce6da379198de225686123457))
|
||||
|
||||
|
||||
|
||||
## [4.1.9](https://github.com/Ombi-app/Ombi/compare/v4.1.8...v4.1.9) (2021-09-29)
|
||||
|
||||
|
||||
* **4153:** :bug: fixed gravitar issues ([ec963d8](https://github.com/Ombi-app/Ombi/commit/ec963d869a2bf57edfcfef418e2bf8a1d679d8ca))
|
||||
|
||||
## [4.1.7](https://github.com/Ombi-app/Ombi/compare/v4.1.6...v4.1.7) (2021-09-29)
|
||||
|
||||
|
||||
## [4.0.1511](https://github.com/Ombi-app/Ombi/compare/v4.1.0...v4.0.1511) (2021-10-07)
|
||||
|
||||
## [4.1.6](https://github.com/Ombi-app/Ombi/compare/v4.1.5...v4.1.6) (2021-09-29)
|
||||
|
||||
|
||||
# [4.1.0](https://github.com/Ombi-app/Ombi/compare/v4.0.1510...v4.1.0) (2021-10-07)
|
||||
|
||||
## [4.1.5](https://github.com/Ombi-app/Ombi/compare/v4.1.4...v4.1.5) (2021-09-29)
|
||||
|
||||
### Features
|
||||
|
||||
* :sparkles: Added the ability to specify which branch you are on ([61f3e94](https://github.com/Ombi-app/Ombi/commit/61f3e94308fb3d239140b73d34c12f1496459989))
|
||||
|
||||
## [4.1.3](https://github.com/Ombi-app/Ombi/compare/v4.1.2...v4.1.3) (2021-09-29)
|
||||
|
||||
|
||||
|
||||
## [4.1.2](https://github.com/Ombi-app/Ombi/compare/v4.1.1...v4.1.2) (2021-09-28)
|
||||
## [4.0.1510](https://github.com/Ombi-app/Ombi/compare/v4.0.1602...v4.0.1510) (2021-10-07)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* :bookmark: Set version to correct number ([1a7b9b5](https://github.com/Ombi-app/Ombi/commit/1a7b9b50578675532fdb0f656cbaf51306166b84))
|
||||
* :bug: bump ver ([5207b21](https://github.com/Ombi-app/Ombi/commit/5207b21f2f98cc63f16a72bd79ecac6abf838139))
|
||||
* :bug: Pretending to fix a bug ([5351c14](https://github.com/Ombi-app/Ombi/commit/5351c14cb087f9ecbb37b784724bb35107d17cb8))
|
||||
|
||||
|
||||
|
||||
## [4.1.1](https://github.com/Ombi-app/Ombi/compare/v4.0.1506...v4.1.1) (2021-09-28)
|
||||
* :bug: Set the real tag version now ([9287d83](https://github.com/Ombi-app/Ombi/commit/9287d83c134e62c9f0a5d271cfd88eefc9dcae39))
|
||||
* :bug: Stop Devops from building and releasing, GH Actions will now call the APT Build ([1fda2a1](https://github.com/Ombi-app/Ombi/commit/1fda2a1d37c1182177fdca55e38b98a85dc1fe05))
|
||||
* :bug: updated contributors PAT ([a1d22db](https://github.com/Ombi-app/Ombi/commit/a1d22db4d14c63c39e79d47d99cc7ca2efe393df))
|
||||
* :bug: Upload the correct artifacts ([a249805](https://github.com/Ombi-app/Ombi/commit/a2498051cfd679dd19206571883a08d77e159e2b))
|
||||
* try and fix the artifact upload ([fb9ff4c](https://github.com/Ombi-app/Ombi/commit/fb9ff4ccde9121dce6da379198de225686123457))
|
||||
|
||||
|
||||
|
||||
|
@ -1,3 +1,3 @@
|
||||
{
|
||||
"version": "4.0.1510"
|
||||
"version": "4.1.1"
|
||||
}
|
Loading…
Reference in new issue