From 449959e5f0b83a68672a5b0b47d2f7cecb54d777 Mon Sep 17 00:00:00 2001 From: Artem Vitae Date: Mon, 23 Aug 2021 10:55:32 +0700 Subject: [PATCH] Remove Github Release task. --- azure-pipelines-release-stage-job.yml | 9 --------- 1 file changed, 9 deletions(-) diff --git a/azure-pipelines-release-stage-job.yml b/azure-pipelines-release-stage-job.yml index a9e20a9f76..5d2f92b55f 100644 --- a/azure-pipelines-release-stage-job.yml +++ b/azure-pipelines-release-stage-job.yml @@ -128,12 +128,3 @@ jobs: 7z a .\upload\mm2-$(COMMIT_HASH)-$(Agent.OS)-Release.zip .\target\release\mm2.exe .\target\release\mm2.lib .\target\release\*.dll "$Env:windir\system32\msvcr100.dll" "$Env:windir\system32\msvcp140.dll" "$Env:windir\system32\vcruntime140.dll" displayName: 'Prepare release build upload Windows' condition: and( eq( variables['Agent.OS'], 'Windows_NT' ), eq( variables['RELEASE_UPLOADED'], '' ) ) - - task: GitHubRelease@0 - inputs: - action: edit - gitHubConnection: artemii235 - assets: 'upload/*' - assetUploadMode: replace - tagSource: manual - tag: $(RELEASE_TAG) - condition: or( eq( variables['RELEASE_UPLOADED'], '' ), eq( variables['DEBUG_UPLOADED'], '' ) )