mirror of
https://github.com/YACReader/yacreader
synced 2025-11-22 10:32:49 -05:00
Some checks failed
Build / Initialization (push) Has been cancelled
Build / Code Format Validation (push) Has been cancelled
Build / Linux (Qt5) (push) Has been cancelled
Build / Linux (Qt6) (push) Has been cancelled
Build / Linux (Qt6 + 7zip) (push) Has been cancelled
Build / macOS (Qt6 Universal) (push) Has been cancelled
Build / macOS (Qt5) (push) Has been cancelled
Build / Windows x64 (Qt5) (push) Has been cancelled
Build / Windows x64 (Qt6) (push) Has been cancelled
Build / Windows x86 (Qt5) (push) Has been cancelled
Build / Docker amd64 Image (push) Has been cancelled
Build / Docker arm64 Image (push) Has been cancelled
Build / Publish Dev Builds (push) Has been cancelled
Build / Publish Release (push) Has been cancelled
45 lines
1.4 KiB
XML
45 lines
1.4 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<artifact-configuration xmlns="http://signpath.io/artifact-configuration/v1">
|
|
<!-- Windows x64 Qt5 Installer with Deep Signing -->
|
|
<artifact-configuration id="windows-installer">
|
|
<inno-setup-file>
|
|
<!-- Sign the installer itself -->
|
|
<authenticode-sign/>
|
|
<!-- Also sign PE files inside the installer -->
|
|
<directory path="*">
|
|
<pe-file>
|
|
<authenticode-sign/>
|
|
</pe-file>
|
|
</directory>
|
|
</inno-setup-file>
|
|
</artifact-configuration>
|
|
|
|
<!-- Windows x64 Qt6 Installer with Deep Signing -->
|
|
<artifact-configuration id="windows-installer-qt6">
|
|
<inno-setup-file>
|
|
<!-- Sign the installer itself -->
|
|
<authenticode-sign/>
|
|
<!-- Also sign PE files inside the installer -->
|
|
<directory path="*">
|
|
<pe-file>
|
|
<authenticode-sign/>
|
|
</pe-file>
|
|
</directory>
|
|
</inno-setup-file>
|
|
</artifact-configuration>
|
|
|
|
<!-- Windows x86 Qt5 Installer with Deep Signing -->
|
|
<artifact-configuration id="windows-installer-x86">
|
|
<inno-setup-file>
|
|
<!-- Sign the installer itself -->
|
|
<authenticode-sign/>
|
|
<!-- Also sign PE files inside the installer -->
|
|
<directory path="*">
|
|
<pe-file>
|
|
<authenticode-sign/>
|
|
</pe-file>
|
|
</directory>
|
|
</inno-setup-file>
|
|
</artifact-configuration>
|
|
</artifact-configuration>
|