From 1817191d5569bea9b19c25f548117325eda6ed65 Mon Sep 17 00:00:00 2001 From: Zach Hilman Date: Tue, 8 Oct 2019 19:52:02 -0400 Subject: ci: Isolate upload merge step into stage 2 --- .ci/templates/release-private-tag.yml | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 .ci/templates/release-private-tag.yml (limited to '.ci/templates/release-private-tag.yml') diff --git a/.ci/templates/release-private-tag.yml b/.ci/templates/release-private-tag.yml new file mode 100644 index 000000000..e80d57593 --- /dev/null +++ b/.ci/templates/release-private-tag.yml @@ -0,0 +1,9 @@ +steps: + - script: chmod a+x $(System.DefaultWorkingDirectory)/.ci/scripts/merge/yuzubot-git-config.sh && $(System.DefaultWorkingDirectory)/.ci/scripts/merge/yuzubot-git-config.sh + displayName: 'Apply Git Configuration' + - script: git tag -a $(BuildName)-$(DisplayPrefix)-$(DisplayVersion) -m "yuzu $(BuildName) $(Build.BuildNumber) $(Build.DefinitionName) $(DisplayPrefix)-$(DisplayVersion)" + displayName: 'Tag Source' + - script: git remote add other $(GitRepoPushChangesURL) + displayName: 'Register Repository' + - script: git push other $(BuildName)-$(DisplayPrefix)-$(DisplayVersion) + displayName: 'Update Code' \ No newline at end of file -- cgit v1.2.3