Build info
master.
For production use, download a stable release.
#!/usr/bin/env python3 """ generate-page.py — Generates gh-pages/index.html for QElectroTech nightly builds. Called from windows-build.yml deploy-pages job. Environment variables required: DATE, SHORT, REPO, SHA, RUN_URL, RUN_NUMBER, INSTALLER_URL, PORTABLE_URL, MSI_URL (optional) """ import os date = os.environ.get("DATE", "") short = os.environ.get("SHORT", "") repo = os.environ.get("REPO", "") sha = os.environ.get("SHA", "") run_url = os.environ.get("RUN_URL", "") run_number = os.environ.get("RUN_NUMBER", "") installer_url = os.environ.get("INSTALLER_URL", "") portable_url = os.environ.get("PORTABLE_URL", "") msi_url = os.environ.get("MSI_URL", "") msi_block = "" if msi_url: msi_block = f""" Windows Installer .msi.msi — for enterprise / GPO deployment """ html = f"""
Nightly Windows Builds
master.
For production use, download a stable release.