diff options
author | Zach Hilman <zachhilman@gmail.com> | 2019-07-11 04:18:29 +0200 |
---|---|---|
committer | Zach Hilman <zachhilman@gmail.com> | 2019-07-11 04:18:32 +0200 |
commit | 502358ab051c77afa9beee0541307ee3ae678e33 (patch) | |
tree | 48af0a1fc1e11ffa75bb5bccceb0efe57adcf1e8 /.ci | |
parent | Merge pull request #2697 from lioncash/doc (diff) | |
download | yuzu-502358ab051c77afa9beee0541307ee3ae678e33.tar yuzu-502358ab051c77afa9beee0541307ee3ae678e33.tar.gz yuzu-502358ab051c77afa9beee0541307ee3ae678e33.tar.bz2 yuzu-502358ab051c77afa9beee0541307ee3ae678e33.tar.lz yuzu-502358ab051c77afa9beee0541307ee3ae678e33.tar.xz yuzu-502358ab051c77afa9beee0541307ee3ae678e33.tar.zst yuzu-502358ab051c77afa9beee0541307ee3ae678e33.zip |
Diffstat (limited to '.ci')
-rw-r--r-- | .ci/yuzu-repo-sync.yml | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/.ci/yuzu-repo-sync.yml b/.ci/yuzu-repo-sync.yml new file mode 100644 index 000000000..602e298a6 --- /dev/null +++ b/.ci/yuzu-repo-sync.yml @@ -0,0 +1,19 @@ +trigger: +- master + +jobs: +- job: copy + displayName: 'Sync Repository' + pool: + vmImage: 'ubuntu-latest' + steps: + - script: echo 'https://$(GitUsername):$(GitAccessToken)@dev.azure.com' > $HOME/.git-credentials + displayName: 'Load Credentials' + - script: git config --global credential.helper store + displayName: 'Register Credential Helper' + - script: git remote add other $(GitRepoPushChangesURL) + displayName: 'Register Repository' + - script: git push --force other HEAD:$(GitPushBranch) + displayName: 'Update Code' + - script: rm -rf $HOME/.git-credentials + displayName: 'Clear Cached Credentials' |