Skip to content

Commit

Permalink
Add GitHub release step to Deploy job
Browse files Browse the repository at this point in the history
  • Loading branch information
heaths committed Mar 21, 2019
1 parent 1957918 commit b3ff92e
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -137,6 +137,17 @@ jobs:
artifactName: drop
downloadPath: $(System.ArtifactsDirectory)

- task: GitHubRelease@0
displayName: Create release
inputs:
gitHubConnection: GitHub
repositoryName: heaths/vscode-guid
tagSource: manual
tag: v$(Build.BuildNumber)
assets: |
$(Build.ArtifactStagingDirectory)/**/*.vsix
isPreRelease: $[ne(variables['Build.SourceBranch'], 'refs/heads/master')]

- script: |
npm install -g vsce
for fname in $(System.ArtifactsDirectory)/drop/*.vsix; do
Expand Down

0 comments on commit b3ff92e

Please sign in to comment.