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
path: root/tools
diff options
context:
space:
mode:
authorWill Greenberg <willg@eff.org>2022-03-03 21:31:03 +0300
committerGitHub <noreply@github.com>2022-03-03 21:31:03 +0300
commitf251a13f322e10c530897be31aa07a1199061f10 (patch)
tree25ac7eb77c1d21b0311f474e49015404d275565a /tools
parent92de543fe739c7159ef10ce895c468ccc1c1f089 (diff)
Remove Windows 2016 environment, generate 64 bit installer (#9202)
* Remove Windows 2016 environment, generate 64 bit installer * Add note to changelog * Use win_amd64 as installer suffix * Bump PYTHON_BITNESS to 64 * Require 64 bit Windows for the installer_build job * Update certbot install path * update windows test name * Base installer suffix on PYTHON_BITNESS again * Update changelog to request users uninstall old version
Diffstat (limited to 'tools')
-rwxr-xr-xtools/finish_release.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/finish_release.py b/tools/finish_release.py
index 097551057..aa224e38f 100755
--- a/tools/finish_release.py
+++ b/tools/finish_release.py
@@ -135,7 +135,7 @@ def create_github_release(github_access_token, tempdir, version):
# Upload windows installer to release
print("Uploading windows installer")
- release.upload_asset(tempdir + '/windows-installer/certbot-beta-installer-win32.exe')
+ release.upload_asset(tempdir + '/windows-installer/certbot-beta-installer-win_amd64.exe')
release.update_release(release.title, release.body, draft=False)