File tree Expand file tree Collapse file tree 2 files changed +5
-1
lines changed
Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -59,7 +59,7 @@ after_build:
5959 - ps : |
6060 $invokePsake = @{
6161 BuildFile = [IO.Path]::Combine($env:APPVEYOR_BUILD_FOLDER, '.build', 'buildPsake.ps1')
62- TaskList = @('CodeCov', 'GitHubTagDelete', 'AppveyorArtifact' )
62+ TaskList = @('CodeCov', 'GitHubTagDelete')
6363 }
6464 Invoke-psake @invokePsake
6565 if (-not $psake.build_success) {
Original file line number Diff line number Diff line change @@ -323,7 +323,11 @@ task GitHubTagDelete {
323323 }
324324 }
325325
326+ Write-Host (' [PSAKE GitHubTagDelete] APPVEYOR_REPO_TAG: {0}' -f $env: APPVEYOR_REPO_TAG )
327+
326328 if ($env: APPVEYOR_REPO_TAG -eq ' true' ) {
329+ Write-Host (' [PSAKE GitHubTagDelete] APPVEYOR_REPO_TAG_NAME: {0}' -f $env: APPVEYOR_REPO_TAG_NAME )
330+
327331 # https://docs.github.com/en/rest/releases/releases?apiVersion=2022-11-28#get-a-release-by-tag-name
328332 $webRequest = @ {
329333 Uri = ' https://api.github.com/repos/{0}/releases/tags/{1}' -f $env: APPVEYOR_REPO_NAME , $env: APPVEYOR_REPO_TAG_NAME
You can’t perform that action at this time.
0 commit comments