ci: Isolate upload merge step into stage 2
This commit is contained in:
		
							parent
							
								
									1ec23a0353
								
							
						
					
					
						commit
						1817191d55
					
				| @ -31,17 +31,7 @@ jobs: | ||||
|       needSubmodules: 'true' | ||||
|   - 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)-$(Build.BuildId) -m "yuzu $(BuildName) $(Build.BuildNumber) $(Build.DefinitionName)" | ||||
|     displayName: 'Tag Source' | ||||
|   - script: git remote add other $(GitRepoPushChangesURL) | ||||
|     displayName: 'Register Repository' | ||||
|   - script: git push --follow-tags --force other HEAD:$(GitPushBranch) | ||||
|   - script: git push --force other HEAD:$(GitPushBranch) | ||||
|     displayName: 'Update Code' | ||||
|   - script: git rev-list -n 1 $(BuildName)-$(Build.BuildId) > $(Build.ArtifactStagingDirectory)/tag-commit.sha | ||||
|     displayName: 'Calculate Release Point' | ||||
|   - task: PublishPipelineArtifact@1 | ||||
|     displayName: 'Upload Release Point' | ||||
|     inputs: | ||||
|       targetPath: '$(Build.ArtifactStagingDirectory)/tag-commit.sha' | ||||
|       artifact: 'yuzu-$(BuildName)-release-point' | ||||
|       replaceExistingArchive: true | ||||
| @ -30,17 +30,7 @@ jobs: | ||||
|       needSubmodules: 'true' | ||||
|   - 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)-$(Build.BuildId) -m "yuzu $(BuildName) $(Build.BuildNumber) $(Build.DefinitionName)" | ||||
|     displayName: 'Tag Source' | ||||
|   - script: git remote add other $(GitRepoPushChangesURL) | ||||
|     displayName: 'Register Repository' | ||||
|   - script: git push --follow-tags --force other HEAD:$(GitPushBranch) | ||||
|   - script: git push --force other HEAD:$(GitPushBranch) | ||||
|     displayName: 'Update Code' | ||||
|   - script: git rev-list -n 1 $(BuildName)-$(Build.BuildId) > $(Build.ArtifactStagingDirectory)/tag-commit.sha | ||||
|     displayName: 'Calculate Release Point' | ||||
|   - task: PublishPipelineArtifact@1 | ||||
|     displayName: 'Upload Release Point' | ||||
|     inputs: | ||||
|       targetPath: '$(Build.ArtifactStagingDirectory)/tag-commit.sha' | ||||
|       artifact: 'yuzu-$(BuildName)-release-point' | ||||
|       replaceExistingArchive: true | ||||
| @ -1,11 +1,13 @@ | ||||
| steps: | ||||
|   - template: ./release-download.yml | ||||
|   - task: GitHubRelease@0 | ||||
|     displayName: 'GitHub Release' | ||||
|     inputs: | ||||
|       action: 'create' | ||||
|       title: 'yuzu $(BuildName) #$(Build.BuildId)' | ||||
|       title: '$(ReleasePrefix) $(DisplayVersion)' | ||||
|       assets: '$(Build.ArtifactStagingDirectory)/*' | ||||
|       gitHubConnection: $(GitHubReleaseConnectionName) | ||||
|       repositoryName: '$(Build.Repository.Name)' | ||||
|       target: '$(Build.SourceVersion)' | ||||
|       tagSource: 'auto' | ||||
|       tagSource: manual | ||||
|       tag: $(BuildName)-$(DisplayPrefix)-$(DisplayVersion) | ||||
							
								
								
									
										9
									
								
								.ci/templates/release-private-tag.yml
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										9
									
								
								.ci/templates/release-private-tag.yml
									
									
									
									
									
										Normal file
									
								
							| @ -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' | ||||
| @ -57,12 +57,12 @@ stages: | ||||
|         cache: 'true' | ||||
|         version: $(DisplayVersion) | ||||
| - stage: release | ||||
|   displayName: 'Release' | ||||
|   displayName: 'release' | ||||
|   dependsOn: | ||||
|   - build | ||||
|   - build_win | ||||
|   jobs: | ||||
|   - job: github | ||||
|     displayName: 'GitHub Release' | ||||
|     displayName: 'github' | ||||
|     steps: | ||||
|     - template: ./templates/release-github.yml | ||||
| @ -32,3 +32,11 @@ stages: | ||||
|         artifactSource: 'false' | ||||
|         cache: $(parameters.cache) | ||||
|         version: $(DisplayVersion) | ||||
| - stage: release | ||||
|   displayName: 'release' | ||||
|   dependsOn: build | ||||
|   jobs: | ||||
|     - job: release | ||||
|       displayName: 'source' | ||||
|       steps: | ||||
|         - template: ./templates/release-private-tag.yml | ||||
|  | ||||
		Loading…
	
		Reference in New Issue
	
	Block a user
	 Zach Hilman
						Zach Hilman