Update release pipeline to match 2.2 requirements

We no longer ship mpc as a zip
This commit is contained in:
Andrew Arnott 2020-09-14 09:40:56 -06:00
Родитель a839b13f30
Коммит 7de68324b9
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: A9B9910CDCCDA441
1 изменённых файлов: 0 добавлений и 10 удалений

Просмотреть файл

@ -24,21 +24,12 @@ stages:
- powershell: | - powershell: |
Write-Host "##vso[build.updatebuildnumber]$(resources.pipeline.CI.runName)" Write-Host "##vso[build.updatebuildnumber]$(resources.pipeline.CI.runName)"
displayName: Set pipeline name displayName: Set pipeline name
- download: CI
artifact: mpc
displayName: 'Downloading artifact: mpc'
- download: CI - download: CI
artifact: unity artifact: unity
displayName: 'Downloading artifact: unity' displayName: 'Downloading artifact: unity'
- download: CI - download: CI
artifact: vsix artifact: vsix
displayName: 'Downloading artifact: vsix' displayName: 'Downloading artifact: vsix'
- task: ArchiveFiles@2
displayName: Archive mpc
inputs:
rootFolderOrFile: $(Pipeline.Workspace)/CI/mpc
includeRootFolder: false
archiveFile: $(Pipeline.Workspace)/mpc.zip
- task: GitHubRelease@1 - task: GitHubRelease@1
displayName: GitHub release (create) displayName: GitHub release (create)
inputs: inputs:
@ -51,7 +42,6 @@ stages:
assets: | assets: |
$(Pipeline.Workspace)/CI/unity/*.unitypackage $(Pipeline.Workspace)/CI/unity/*.unitypackage
$(Pipeline.Workspace)/CI/vsix/* $(Pipeline.Workspace)/CI/vsix/*
$(Pipeline.Workspace)/mpc.zip
isDraft: true # After running this step, visit the new draft release, edit, and publish. isDraft: true # After running this step, visit the new draft release, edit, and publish.
changeLogCompareToRelease: lastNonDraftRelease changeLogCompareToRelease: lastNonDraftRelease
changeLogType: issueBased changeLogType: issueBased