Skip to content

Commit

Permalink
[AppVeyor] Fix deploy tag/description.
Browse files Browse the repository at this point in the history
  • Loading branch information
gibbed authored Jan 24, 2022
1 parent 02bdea7 commit cb83479
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions .appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
- |
Expand Down Expand Up @@ -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)
Expand Down

0 comments on commit cb83479

Please sign in to comment.