summaryrefslogtreecommitdiff
path: root/.appveyor.yml
diff options
context:
space:
mode:
authorRick Gibbed <rick@gibbed.us>2022-01-24 06:05:45 -0600
committerGitHub <noreply@github.com>2022-01-24 06:05:45 -0600
commitcb83479c5314ad008d6b238c57938dccb22218a0 (patch)
tree0703a634ef4586852c0f022aec494c387ece897f /.appveyor.yml
parent02bdea7b8b5afa4e2f38078e2eca140da2f5d842 (diff)
[AppVeyor] Fix deploy tag/description.
Diffstat (limited to '.appveyor.yml')
-rw-r--r--.appveyor.yml12
1 files changed, 9 insertions, 3 deletions
diff --git a/.appveyor.yml b/.appveyor.yml
index d42506119..603687691 100644
--- a/.appveyor.yml
+++ b/.appveyor.yml
@@ -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)