Add deployment step (#4)

* add release step

* add creation release

* move file to another folder

* resolve comments

* minor changes
This commit is contained in:
Dmitry Shibanov
2020-02-20 17:52:12 +03:00
committed by GitHub
parent 779cef9b67
commit 56bc08104e
2 changed files with 43 additions and 0 deletions

View File

@@ -35,6 +35,18 @@ jobs:
-VirtualNetworkSubnet $(BUILD_AGENT_SUBNET_NAME) `
-GitHubFeedToken $(GITHUB_TOKEN)
- task: PowerShell@2
displayName: 'Create release for VM deployment'
inputs:
targetType: filePath
filePath: ./images.CI/create-release.ps1
arguments: -BuildId $(Build.BuildNumber) `
-Organization $(RELEASE_TARGET_ORGANIZATION) `
-DefinitionId $(RELEASE_TARGET_DEFINITION_ID) `
-Project $(RELEASE_TARGET_PROJECT) `
-ImageName ${{ parameters.image_type }} `
-AccessToken $(RELEASE_TARGET_TOKEN)
- task: PowerShell@2
displayName: 'Clean up resources'
condition: always()