Skip to content

Commit 189003b

Browse files
committed
Add GitHub token validation and update release naming convention
1 parent d5da7a3 commit 189003b

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

.appveyor.yml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,11 @@ image: Visual Studio 2019
1111

1212
install:
1313
ps: |
14+
if (-not $env:GH_PAT) {
15+
Write-Warning "GH_PAT environment variable is not set. Deployment will likely fail."
16+
} else {
17+
Write-Host "GH_PAT is set."
18+
}
1419
echo "Build cache directory c:\build-cache"
1520
if (-not (Test-Path c:\build-cache)) {
1621
mkdir c:\build-cache
@@ -39,7 +44,7 @@ deploy:
3944
draft: false
4045
prerelease: false
4146
force_update: true
42-
release: "php_winbinder-8.3.15"
43-
tag: "php_winbinder-8.3.15"
47+
release: WinBinder-8.3.15
48+
tag: v8.3.15
4449
on:
4550
branch: main

0 commit comments

Comments
 (0)