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:
59
59
- ps : |
60
60
$invokePsake = @{
61
61
BuildFile = [IO.Path]::Combine($env:APPVEYOR_BUILD_FOLDER, '.build', 'buildPsake.ps1')
62
- TaskList = @('CodeCov', 'GitHubTagDelete', 'AppveyorArtifact' )
62
+ TaskList = @('CodeCov', 'GitHubTagDelete')
63
63
}
64
64
Invoke-psake @invokePsake
65
65
if (-not $psake.build_success) {
Original file line number Diff line number Diff line change @@ -323,7 +323,11 @@ task GitHubTagDelete {
323
323
}
324
324
}
325
325
326
+ Write-Host (' [PSAKE GitHubTagDelete] APPVEYOR_REPO_TAG: {0}' -f $env: APPVEYOR_REPO_TAG )
327
+
326
328
if ($env: APPVEYOR_REPO_TAG -eq ' true' ) {
329
+ Write-Host (' [PSAKE GitHubTagDelete] APPVEYOR_REPO_TAG_NAME: {0}' -f $env: APPVEYOR_REPO_TAG_NAME )
330
+
327
331
# https://docs.github.com/en/rest/releases/releases?apiVersion=2022-11-28#get-a-release-by-tag-name
328
332
$webRequest = @ {
329
333
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