Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/certbot/certbot.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdrien Ferrand <adferrand@users.noreply.github.com>2019-10-30 20:19:10 +0300
committerBrad Warren <bmw@users.noreply.github.com>2019-10-30 20:19:10 +0300
commit2dbe47f3a726f4c43b0d747193ed207999dc8ea8 (patch)
treedb5e7fa644237dad31760d0e8c05d46d688abcb8 /windows-installer
parent0f31d9b7ac1bb01a3ff6ac396fe315cb657eef6f (diff)
Create a release pipeline on Azure for Windows installer (#7441)
This PR creates a pipeline triggered on tag push matching v0.* (eg. v0.40.0). Once triggered, this pipeline will build the windows installer, and run integration tests on it, like for the pipeline run nightly. I also add a simple script to extract from CHANGELOG.md file to extract the relevant part to put it in the body of the GitHub release. I believe it makes things nicer. * Create release pipeline * Relax condition on tags * Put beta keyword * Update job name * Fix release pipeline
Diffstat (limited to 'windows-installer')
-rw-r--r--windows-installer/construct.py2
-rw-r--r--windows-installer/template.nsi5
2 files changed, 5 insertions, 2 deletions
diff --git a/windows-installer/construct.py b/windows-installer/construct.py
index 8de9da87c..7fd3039f9 100644
--- a/windows-installer/construct.py
+++ b/windows-installer/construct.py
@@ -113,7 +113,7 @@ target=$INSTDIR\\run.bat
[Build]
directory=nsis
nsi_template=template.nsi
-installer_name=certbot-installer-{installer_suffix}.exe
+installer_name=certbot-beta-installer-{installer_suffix}.exe
[Python]
version={python_version}
diff --git a/windows-installer/template.nsi b/windows-installer/template.nsi
index 0f366c22a..50a03865f 100644
--- a/windows-installer/template.nsi
+++ b/windows-installer/template.nsi
@@ -60,7 +60,10 @@ SetCompressor lzma
!insertmacro MUI_LANGUAGE "English"
[% endblock modernui %]
-Name "${PRODUCT_NAME} ${PRODUCT_VERSION}"
+; CERTBOT CUSTOM BEGIN
+Name "${PRODUCT_NAME} (beta) ${PRODUCT_VERSION}"
+;Name "${PRODUCT_NAME} ${PRODUCT_VERSION}"
+; CERTBOT CUSTOM END
OutFile "${INSTALLER_NAME}"
ShowInstDetails show