This commit is contained in:
João Moreno 2020-12-16 16:25:38 +01:00
parent d14fb9da0f
commit df0eda5adb
No known key found for this signature in database
GPG key ID: 896B853774D1A575
2 changed files with 11 additions and 13 deletions

View file

@ -1,15 +1,4 @@
steps:
- task: DownloadPipelineArtifact@2
inputs:
artifact: CompilationOutput
path: $(System.DefaultWorkingDirectory)
- script: |
set -e
exit 1
displayName: Check RestoreCache
condition: and(succeeded(), ne(variables['CacheRestored-Compilation'], 'true'))
- task: NodeTool@0
inputs:
versionSpec: "12.18.3"
@ -24,6 +13,12 @@ steps:
azureSubscription: "vscode-builds-subscription"
KeyVaultName: vscode
- task: DownloadPipelineArtifact@2
inputs:
artifact: CompilationOutput
path: $(System.DefaultWorkingDirectory)
displayName: Download Compilation Output
- script: |
set -e
cat << EOF > ~/.netrc

View file

@ -105,5 +105,8 @@ steps:
displayName: Create build
condition: and(succeeded(), ne(variables['VSCODE_PUBLISH'], 'false'))
- publish: $(System.DefaultWorkingDirectory)
artifact: CompilationOutput
- task: PublishPipelineArtifact@1
inputs:
targetPath: $(System.DefaultWorkingDirectory)
artifactName: CompilationOutput
displayName: Publish Compilation Output