mirror of
https://github.com/JGRennison/OpenTTD-patches.git
synced 2024-11-09 19:10:38 +00:00
750927372f
This release pipeline creates all the official release binaries, and publishes them as artifacts. Currently it can only produce nightlies and custom builds; stable/testing release binaries are untested. This commit also splits up the pipeline in small bits, to both improve readability, and to share code with the CI pipeline where possible.
10 lines
330 B
YAML
10 lines
330 B
YAML
steps:
|
|
# Rebase to origin/master for every PR. This means users don't have to
|
|
# rebase every time master changes. As long as the PR applies cleanly, we
|
|
# will validate it.
|
|
- script: |
|
|
git config user.email 'info@openttd.org'
|
|
git config user.name 'OpenTTD CI'
|
|
git rebase origin/master
|
|
displayName: 'Rebase to master'
|