fluentui-android/fluentui-android-sync-githu...

16 строки
365 B
YAML
Исходник Обычный вид История

2020-09-01 09:55:09 +03:00
# pipeline for syncing AzDo develop branch to github develop
trigger:
- develop
pool:
vmImage: 'ubuntu-latest'
steps:
- bash: |
git checkout develop
git remote add github https://$(githubUser):$(githubPassword)@github.com/microsoft/fluentui-android
git push --tags github develop:develop --force
displayName: 'Push changes to GitHub develop'