mirror of
https://github.com/OpenTTD/OpenTTD.git
synced 2025-02-11 00:34:27 +00:00
14 lines
359 B
YAML
14 lines
359 B
YAML
|
steps:
|
||
|
- task: DownloadBuildArtifacts@0
|
||
|
displayName: 'Download all bundles'
|
||
|
inputs:
|
||
|
downloadType: specific
|
||
|
itemPattern: 'bundles/*'
|
||
|
downloadPath: '$(Build.ArtifactStagingDirectory)'
|
||
|
- script: |
|
||
|
set -ex
|
||
|
./azure-pipelines/manifest.sh ../a/bundles/
|
||
|
mkdir -p bundles
|
||
|
mv manifest.yaml bundles/
|
||
|
displayName: 'Create manifest.yaml'
|