Skip to content

Commit 9766ce1

Browse files
committed
Removed AppVeyorArtifact
1 parent 857616e commit 9766ce1

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

.appveyor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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) {

.build/buildPsake.ps1

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)