mirror of
https://github.com/YACReader/yacreader
synced 2025-06-03 00:58:32 -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
@ -100,3 +100,16 @@ jobs:
|
|||||||
vc_redist_url: 'https://go.microsoft.com/fwlink/?LinkId=746571'
|
vc_redist_url: 'https://go.microsoft.com/fwlink/?LinkId=746571'
|
||||||
vc_redist_file_name: 'vc_redist.x86.exe'
|
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…
x
Reference in New Issue
Block a user