Update azure-pipelines.yml for Azure Pipelines
This commit is contained in:
parent
d04dc36b52
commit
45637b34bd
1 changed files with 19 additions and 16 deletions
|
@ -57,9 +57,12 @@ jobs:
|
||||||
- task: CopyFiles@2
|
- task: CopyFiles@2
|
||||||
displayName: "Copy to artifacts staging directory"
|
displayName: "Copy to artifacts staging directory"
|
||||||
inputs:
|
inputs:
|
||||||
SourceFolder: "dist"
|
SourceFolder: 'dist'
|
||||||
Contents: "*.AppImage"
|
Contents: |
|
||||||
targetFolder: $(Build.ArtifactStagingDirectory)
|
*.AppImage
|
||||||
|
*.deb
|
||||||
|
*.snap
|
||||||
|
TargetFolder: '$(Build.ArtifactStagingDirectory)'
|
||||||
|
|
||||||
- task: PublishBuildArtifacts@1
|
- task: PublishBuildArtifacts@1
|
||||||
displayName: Upload Artifacts
|
displayName: Upload Artifacts
|
||||||
|
@ -116,17 +119,17 @@ jobs:
|
||||||
Contents: "*.exe"
|
Contents: "*.exe"
|
||||||
targetFolder: $(Build.ArtifactStagingDirectory)
|
targetFolder: $(Build.ArtifactStagingDirectory)
|
||||||
|
|
||||||
- task: PublishBuildArtifacts@1
|
# - task: PublishBuildArtifacts@1
|
||||||
displayName: Upload Artifacts
|
# displayName: Upload Artifacts
|
||||||
inputs:
|
# inputs:
|
||||||
ArtifactName: "Cider-2"
|
# ArtifactName: "Cider-2"
|
||||||
publishLocation: "Container"
|
# publishLocation: "Container"
|
||||||
|
|
||||||
- task: DownloadBuildArtifacts@1
|
# - task: DownloadBuildArtifacts@1
|
||||||
inputs:
|
# inputs:
|
||||||
buildType: 'current'
|
# buildType: 'current'
|
||||||
downloadType: 'specific'
|
# downloadType: 'specific'
|
||||||
downloadPath: '$(System.ArtifactsDirectory)'
|
# downloadPath: '$(System.ArtifactsDirectory)'
|
||||||
|
|
||||||
- job: upload_files
|
- job: upload_files
|
||||||
dependsOn:
|
dependsOn:
|
||||||
|
@ -141,10 +144,10 @@ jobs:
|
||||||
action: 'create'
|
action: 'create'
|
||||||
target: '$(Build.SourceVersion)'
|
target: '$(Build.SourceVersion)'
|
||||||
tagSource: 'userSpecifiedTag'
|
tagSource: 'userSpecifiedTag'
|
||||||
tag: 'v1.6.1-citest'
|
tag: 'v1.6.1'
|
||||||
title: 'Cider Version 1.6.1 (CI test)'
|
title: 'Cider Version 1.6.1'
|
||||||
releaseNotesSource: 'inline'
|
releaseNotesSource: 'inline'
|
||||||
releaseNotesInline: 'Test build from azure CI'
|
releaseNotesInline: 'Test build from azure CI'
|
||||||
isPreRelease: true
|
isPreRelease: false
|
||||||
addChangeLog: false
|
addChangeLog: false
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue