We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 497ba93 commit ec3c823Copy full SHA for ec3c823
build.ps1
@@ -26,6 +26,13 @@ $Cef32vcx = Join-Path (Join-Path $Cef32 'libcef_dll_wrapper') 'libcef_dll_wrappe
26
$Cef64 = Join-Path $WorkingDir 'cef_binary_3.y.z_windows64'
27
$Cef64vcx = Join-Path (Join-Path $Cef64 'libcef_dll_wrapper') 'libcef_dll_wrapper.vcxproj'
28
29
+# Set CefVersion based on tag name - must start with leading "v" e.g. v3.3163.1663.g416ffeb
30
+if ($env:APPVEYOR_REPO_TAG -eq "True")
31
+{
32
+ $CefVersion = "$env:APPVEYOR_REPO_TAG_NAME".Substring(1) # trim leading "v"
33
+ Write-Diagnostic "Setting version based on tag to $CefVersion"
34
+}
35
+
36
# Take the cef version and strip the commit hash
37
$CefPackageVersion = $CefVersion.SubString(0, $CefVersion.LastIndexOf('.'))
38
0 commit comments