summaryrefslogtreecommitdiffstats
path: root/.ci/templates/release-private-tag.yml
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2019-10-09 02:16:28 +0200
committerGitHub <noreply@github.com>2019-10-09 02:16:28 +0200
commit464353bc5751dfc62a64c5eb64a632a8df5fed63 (patch)
tree536e06facbce94dd263753e7d05a5e8c24a19cdf /.ci/templates/release-private-tag.yml
parentMerge pull request #2956 from DarkLordZach/azure-win-tarxz (diff)
parentci: Isolate upload merge step into stage 2 (diff)
downloadyuzu-464353bc5751dfc62a64c5eb64a632a8df5fed63.tar
yuzu-464353bc5751dfc62a64c5eb64a632a8df5fed63.tar.gz
yuzu-464353bc5751dfc62a64c5eb64a632a8df5fed63.tar.bz2
yuzu-464353bc5751dfc62a64c5eb64a632a8df5fed63.tar.lz
yuzu-464353bc5751dfc62a64c5eb64a632a8df5fed63.tar.xz
yuzu-464353bc5751dfc62a64c5eb64a632a8df5fed63.tar.zst
yuzu-464353bc5751dfc62a64c5eb64a632a8df5fed63.zip
Diffstat (limited to '.ci/templates/release-private-tag.yml')
-rw-r--r--.ci/templates/release-private-tag.yml9
1 files changed, 9 insertions, 0 deletions
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