| 1 | <?xml version="1.0" encoding="utf-8"?> |
| 2 | <!-- Sign every executable that the NSIS installer writes to disk: the flat Go |
| 3 | payload plus every PE file inside the Electron app/ tree. GitHub Actions |
| 4 | wraps the payload directory (desktop/build/windows/signing-payload, which |
| 5 | also carries the generated signing-files.txt manifest of these PE files) |
| 6 | in a zip before SignPath receives it. --> |
| 7 | <artifact-configuration xmlns="http://signpath.io/artifact-configuration/v1"> |
| 8 | <zip-file> |
| 9 | <pe-file path="reasonix-desktop.exe"> |
| 10 | <authenticode-sign /> |
| 11 | </pe-file> |
| 12 | <pe-file path="reasonix-guard.exe"> |
| 13 | <authenticode-sign /> |
| 14 | </pe-file> |
| 15 | <pe-file path="reasonix-launcher.exe"> |
| 16 | <authenticode-sign /> |
| 17 | </pe-file> |
| 18 | <pe-file path="reasonix-update-helper.exe"> |
| 19 | <authenticode-sign /> |
| 20 | </pe-file> |
| 21 | <pe-file path="reasonix-cli.exe"> |
| 22 | <authenticode-sign /> |
| 23 | </pe-file> |
| 24 | <pe-file path="reasonix-uninstall.exe"> |
| 25 | <authenticode-sign /> |
| 26 | </pe-file> |
| 27 | <pe-file path="app/Reasonix.exe"> |
| 28 | <authenticode-sign /> |
| 29 | </pe-file> |
| 30 | <pe-file-set> |
| 31 | <include path="app/**/*.exe" min-matches="1" max-matches="unbounded" /> |
| 32 | <include path="app/**/*.dll" min-matches="1" max-matches="unbounded" /> |
| 33 | <for-each> |
| 34 | <authenticode-sign /> |
| 35 | </for-each> |
| 36 | </pe-file-set> |
| 37 | </zip-file> |
| 38 | </artifact-configuration> |
| 39 |