[AppVeyor] Fix deploy tag/description.

This commit is contained in:
Rick Gibbed 2022-01-24 06:05:45 -06:00 committed by GitHub
parent 02bdea7b8b
commit cb83479c53
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 9 additions and 3 deletions

View File

@ -30,6 +30,12 @@ init:
If (-Not $env:APPVEYOR_PULL_REQUEST_NUMBER) {
$env:is_not_pr = "true"
}
If (-Not $env:APPVEYOR_REPO_COMMIT_MESSAGE) {
$env:APPVEYOR_REPO_COMMIT_MESSAGE = ""
}
If (-Not $env:APPVEYOR_REPO_COMMIT_MESSAGE_EXTENDED) {
$env:APPVEYOR_REPO_COMMIT_MESSAGE_EXTENDED = ""
}
install:
- |
@ -79,10 +85,10 @@ deploy:
repository: xenia-project/release-builds-windows
auth_token:
secure: /8he47z1WnPN7LcCTe5T5KMxxX0SmqFj9QMpeWEa3aZ64kMsfupOT/jKakqTM8af
tag: xenia-$(appveyor_repo_branch)-v$(appveyor_build_version)
release: xenia-$(appveyor_repo_branch)-v$(appveyor_build_version)
tag: v$(appveyor_build_version)
release: v$(appveyor_build_version)
description: |
Windows release build for https://github.com/xenia-project/xenia/commit/$(APPVEYOR_REPO_COMMIT)
Windows release build for https://github.com/xenia-project/xenia/commit/$(APPVEYOR_REPO_COMMIT).
$(APPVEYOR_REPO_COMMIT_MESSAGE)
$(APPVEYOR_REPO_COMMIT_MESSAGE_EXTENDED)