mirror of
https://github.com/YACReader/yacreader
synced 2025-05-28 03:10:27 -04:00
Create a job to upload dev builds
For now it will try to download all the artifacts to $(Build.SourcesDirectory)/dev_bin
This commit is contained in:
parent
2649f58f15
commit
6c3b04ec65
@ -99,4 +99,17 @@ jobs:
|
||||
qt_aqt_spec: 'win32_msvc2017'
|
||||
vc_redist_url: 'https://go.microsoft.com/fwlink/?LinkId=746571'
|
||||
vc_redist_file_name: 'vc_redist.x86.exe'
|
||||
vc_vars: 'vcvars32.bat'
|
||||
vc_vars: 'vcvars32.bat'
|
||||
- job: PublishDevBuilds
|
||||
dependsOn: Linux, MacOS, Windows_x86, Windows_x64
|
||||
condition: and(succeeded(), eq(variables['Build.SourceBranch'], 'develop'))
|
||||
pool:
|
||||
vmImage: 'ubuntu-16.04'
|
||||
steps:
|
||||
- task: DownloadPipelineArtifact@2
|
||||
inputs:
|
||||
buildType: 'current'
|
||||
targetPath: $(Build.SourcesDirectory)/dev_bin
|
||||
- script: |
|
||||
ls -lah $(Build.SourcesDirectory)/dev_bin
|
||||
|
Loading…
Reference in New Issue
Block a user