Skip to content

Commit 44ca214

Browse files
committed
Merge branch 'prerelease-v2.0.0'
2 parents d070c0f + 22a2490 commit 44ca214

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

appveyor.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ version: 2.0.0.{build}
1616
# branches to build
1717
branches:
1818
only:
19-
- master
19+
- prerelease-v2.0.0
2020

2121
# Do not build on tags (GitHub and BitBucket)
2222
skip_tags: true
@@ -101,7 +101,7 @@ deploy:
101101
secure: BgyLisMc154qWpkyBdh8OD+D9HMM+YnBkh7H4MEUShKO3aCU+Fn/XVGJ07fTsRmH
102102
artifact: /(.*\.zip|.*\.exe)/
103103
draft: false #true means release is private (visible to contributors only), false is public (visible to everyone)
104-
prerelease: true #true for prerelease, false to identify this release as the 'latest release'
104+
prerelease: false #true for prerelease, false to identify this release as the 'latest release'
105105
force_update: true
106106

107107
#---------------------------------#

ci/appveyor/prepare_github_deploy.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
Write-Output "Running prepare_github_deploy.ps1..."
1515
Write-Output "Current branch: $env:APPVEYOR_REPO_BRANCH"
1616
Write-Output "Current build version: $env:APPVEYOR_BUILD_VERSION"
17-
If ("$env:APPVEYOR_REPO_BRANCH" -contains "prerelease") {
17+
If ("$env:APPVEYOR_REPO_BRANCH".contains("prerelease")) {
1818
Write-Output "Tagging each commits with a unique version..."
1919
Write-Output "Deploying each commits to GitHub..."
2020

0 commit comments

Comments
 (0)