mirror of
https://github.com/JGRennison/OpenTTD-patches.git
synced 2024-11-09 19:10:38 +00:00
13b7e8774d
In result, the name of the release was wrong, causing confusing in tools using the manifest.yaml.
21 lines
526 B
YAML
21 lines
526 B
YAML
parameters:
|
|
IsStableRelease: false
|
|
|
|
steps:
|
|
- task: DownloadBuildArtifacts@0
|
|
displayName: 'Download all bundles'
|
|
inputs:
|
|
downloadType: specific
|
|
itemPattern: 'bundles/*'
|
|
downloadPath: '$(Build.ArtifactStagingDirectory)'
|
|
- ${{ if eq(parameters.IsStableRelease, true) }}:
|
|
- script: |
|
|
touch .is_stable
|
|
displayName: 'Mark as stable release'
|
|
- script: |
|
|
set -ex
|
|
./azure-pipelines/manifest.sh ../a/bundles/
|
|
mkdir -p bundles
|
|
mv manifest.yaml bundles/
|
|
displayName: 'Create manifest.yaml'
|