Packaging and publishing applications for Windows
Learn how to package and publish your applications for Windows
Last updated
Learn how to package and publish your applications for Windows
Last updated
This tutorial will guide you in packaging an application for Windows and publishing the installer on KDE's CDN.
We assume that there is already a working blueprint for the application you want to package, i.e. you can build your application with Craft on a (virtual) Windows machine.
We use as example.
In the first step we configure the CI/CD pipeline of NeoChat in KDE's GitLab, so that it creates installers for Windows. We do this by adding the template /gitlab-templates/craft-windows-x86-64-qt6.yml
to the .gitlab-ci.yml
file of NeoChat:
This template adds one job to CI/CD pipeline of NeoChat:
craft_windows_qt6_x86_64
which builds the app with MSVC and creates a Windows installer.
When we now run a CI/CD pipeline for NeoChat then, after successful completion, the craft_windows_qt6_x86_64
job will have created an executable Windows installer (and a few other packages) which we can download by browsing the job artifacts. You'll find the installer in the folder .kde-ci-packages/
.
By default, the installer is not signed. Windows may refuse to run this installer.
When we now run a CI/CD pipeline for NeoChat on the release/24.02
branch then the craft_windows_qt6_x86_64
job will create a signed Windows installer which you should be able to install on your Windows machine.
In this tutorial we have learned how to configure KDE's CI/CD system to create a Windows installer for an application and how to publish this installer on KDE's CDN so that our users can easily install it.
Now we configure our CI/CD system, so that it signs the installer (and the included binaries) created by the CI/CD pipeline. The CI/CD system signs Windows binaries on project branches which are cleared for signing. We want to sign the Windows binaries created for the 24.02 release branch. Project branches are cleared for signing of Windows binaries by adding them to the in the ci-utilities repository. To clear the 24.02 release branch of NeoChat for signing of Windows binaries we add the following to windowsbinariessigner-projects.yaml
:
See the documentation of the for details.
Now that we have a signed Windows installer created for the latest release branch of NeoChat we want to publish it at a location that doesn't change with each build, so that we can link to this location to make it easier for our users to download the latest installer. Such a location is .
To configure the CI/CD system to publish the Windows installer created for the 24.02 release branch of NeoChat on KDE's CDN we add the following to the :
These settings tell the CI/CD system that the Windows installer built on the release/24.02
branch shall be published on KDE's CDN. The latest successfully built installer of NeoChat 24.02 is now available at .
See the documentation of the for details.