summaryrefslogtreecommitdiff
path: root/.ci/yuzu-repo-sync.yml
diff options
context:
space:
mode:
Diffstat (limited to '.ci/yuzu-repo-sync.yml')
-rw-r--r--.ci/yuzu-repo-sync.yml22
1 files changed, 0 insertions, 22 deletions
diff --git a/.ci/yuzu-repo-sync.yml b/.ci/yuzu-repo-sync.yml
deleted file mode 100644
index c5b6ba927..000000000
--- a/.ci/yuzu-repo-sync.yml
+++ /dev/null
@@ -1,22 +0,0 @@
-# SPDX-FileCopyrightText: 2019 yuzu Emulator Project
-# SPDX-License-Identifier: GPL-2.0-or-later
-
-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'