win-exe.yml 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415
  1. name: Build Windows Installer
  2. on:
  3. release:
  4. types: [published]
  5. workflow_dispatch:
  6. inputs:
  7. version:
  8. description: 'Version'
  9. required: false
  10. isDebug:
  11. description: 'Build debug version with console output'
  12. type: boolean
  13. default: false
  14. env:
  15. JAVA_DIST: 'zulu'
  16. JAVA_VERSION: '21.0.2+13'
  17. OPENJFX_JMODS_AMD64: 'https://download2.gluonhq.com/openjfx/21.0.1/openjfx-21.0.1_windows-x64_bin-jmods.zip'
  18. OPENJFX_JMODS_AMD64_HASH: 'daf8acae631c016c24cfe23f88469400274d3441dd890615a42dfb501f3eb94a'
  19. WINFSP_MSI: 'https://github.com/winfsp/winfsp/releases/download/v2.0/winfsp-2.0.23075.msi'
  20. WINFSP_UNINSTALLER: 'https://github.com/cryptomator/winfsp-uninstaller/releases/latest/download/winfsp-uninstaller.exe'
  21. defaults:
  22. run:
  23. shell: bash
  24. jobs:
  25. get-version:
  26. uses: ./.github/workflows/get-version.yml
  27. with:
  28. version: ${{ inputs.version }}
  29. build-msi:
  30. name: Build .msi Installer
  31. runs-on: windows-latest
  32. needs: [get-version]
  33. env:
  34. LOOPBACK_ALIAS: 'cryptomator-vault'
  35. WIN_CONSOLE_FLAG: ''
  36. outputs:
  37. download-url: ${{ fromJSON(steps.publish.outputs.assets)[0].browser_download_url }} #ónly set on a release
  38. steps:
  39. - uses: actions/checkout@v4
  40. - name: Setup Java
  41. uses: actions/setup-java@v4
  42. with:
  43. distribution: ${{ env.JAVA_DIST }}
  44. java-version: ${{ env.JAVA_VERSION }}
  45. check-latest: true
  46. cache: 'maven'
  47. - name: Download and extract JavaFX jmods from Gluon
  48. #In the last step we move all jmods files a dir level up because jmods are placed inside a directory in the zip
  49. run: |
  50. curl --output jfxjmods.zip -L "${{ env.OPENJFX_JMODS_AMD64 }}"
  51. if(!(Get-FileHash -Path jfxjmods.zip -Algorithm SHA256).Hash.ToLower().equals("${{ env.OPENJFX_JMODS_AMD64_HASH }}")) {
  52. throw "Wrong checksum of JMOD archive downloaded from ${{ env.OPENJFX_JMODS_AMD64 }}.";
  53. }
  54. Expand-Archive -Path jfxjmods.zip -DestinationPath jfxjmods
  55. Get-ChildItem -Path jfxjmods -Recurse -Filter "*.jmod" | ForEach-Object { Move-Item -Path $_ -Destination $_.Directory.Parent}
  56. shell: pwsh
  57. - name: Ensure major jfx version in pom and in jmods is the same
  58. run: |
  59. JMOD_VERSION_AMD64=$(jmod describe jfxjmods/javafx.base.jmod | head -1)
  60. JMOD_VERSION_AMD64=${JMOD_VERSION_AMD64#*@}
  61. JMOD_VERSION_AMD64=${JMOD_VERSION_AMD64%%.*}
  62. POM_JFX_VERSION=$(mvn help:evaluate "-Dexpression=javafx.version" -q -DforceStdout)
  63. POM_JFX_VERSION=${POM_JFX_VERSION#*@}
  64. POM_JFX_VERSION=${POM_JFX_VERSION%%.*}
  65. if [ $POM_JFX_VERSION -ne $JMOD_VERSION_AMD64 ]; then
  66. >&2 echo "Major JavaFX version in pom.xml (${POM_JFX_VERSION}) != amd64 jmod version (${JMOD_VERSION_AMD64})"
  67. exit 1
  68. fi
  69. - name: Set version
  70. run : mvn versions:set -DnewVersion=${{ needs.get-version.outputs.semVerStr }}
  71. - name: Run maven
  72. run: mvn -B clean package -Pwin -DskipTests
  73. - name: Patch target dir
  74. run: |
  75. cp LICENSE.txt target
  76. cp target/cryptomator-*.jar target/mods
  77. - name: Run jlink
  78. #Remark: no compression is applied for improved build compression later (here msi)
  79. run: >
  80. ${JAVA_HOME}/bin/jlink
  81. --verbose
  82. --output runtime
  83. --module-path "jfxjmods;${JAVA_HOME}/jmods"
  84. --add-modules java.base,java.desktop,java.instrument,java.logging,java.naming,java.net.http,java.scripting,java.sql,java.xml,javafx.base,javafx.graphics,javafx.controls,javafx.fxml,jdk.unsupported,jdk.crypto.ec,jdk.accessibility,jdk.management.jfr
  85. --strip-native-commands
  86. --no-header-files
  87. --no-man-pages
  88. --strip-debug
  89. --compress zip-0
  90. - name: Change win-console flag if debug is active
  91. if: ${{ inputs.isDebug }}
  92. run: echo "WIN_CONSOLE_FLAG=--win-console" >> $GITHUB_ENV
  93. - name: Run jpackage
  94. run: >
  95. ${JAVA_HOME}/bin/jpackage
  96. --verbose
  97. --type app-image
  98. --runtime-image runtime
  99. --input target/libs
  100. --module-path target/mods
  101. --module org.cryptomator.desktop/org.cryptomator.launcher.Cryptomator
  102. --dest appdir
  103. --name Cryptomator
  104. --vendor "Skymatic GmbH"
  105. --copyright "(C) 2016 - 2024 Skymatic GmbH"
  106. --app-version "${{ needs.get-version.outputs.semVerNum }}.${{ needs.get-version.outputs.revNum }}"
  107. --java-options "--enable-preview"
  108. --java-options "--enable-native-access=org.cryptomator.jfuse.win"
  109. --java-options "-Xss5m"
  110. --java-options "-Xmx256m"
  111. --java-options "-Dcryptomator.appVersion=\"${{ needs.get-version.outputs.semVerStr }}\""
  112. --java-options "-Dfile.encoding=\"utf-8\""
  113. --java-options "-Djava.net.useSystemProxies=true"
  114. --java-options "-Dcryptomator.logDir=\"@{localappdata}/Cryptomator\""
  115. --java-options "-Dcryptomator.pluginDir=\"@{appdata}/Cryptomator/Plugins\""
  116. --java-options "-Dcryptomator.settingsPath=\"@{appdata}/Cryptomator/settings.json;@{userhome}/AppData/Roaming/Cryptomator/settings.json\""
  117. --java-options "-Dcryptomator.p12Path=\"@{appdata}/Cryptomator/key.p12;@{userhome}/AppData/Roaming/Cryptomator/key.p12\""
  118. --java-options "-Dcryptomator.ipcSocketPath=\"@{localappdata}/Cryptomator/ipc.socket\""
  119. --java-options "-Dcryptomator.mountPointsDir=\"@{userhome}/Cryptomator\""
  120. --java-options "-Dcryptomator.loopbackAlias=\"${{ env.LOOPBACK_ALIAS }}\""
  121. --java-options "-Dcryptomator.showTrayIcon=true"
  122. --java-options "-Dcryptomator.buildNumber=\"msi-${{ needs.get-version.outputs.revNum }}\""
  123. --java-options "-Dcryptomator.integrationsWin.autoStartShellLinkName=\"Cryptomator\""
  124. --java-options "-Dcryptomator.integrationsWin.keychainPaths=\"@{appdata}/Cryptomator/keychain.json;@{userhome}/AppData/Roaming/Cryptomator/keychain.json\""
  125. --java-options "-Djavafx.verbose=${{ inputs.isDebug }}"
  126. --resource-dir dist/win/resources
  127. --icon dist/win/resources/Cryptomator.ico
  128. ${WIN_CONSOLE_FLAG}
  129. - name: Patch Application Directory
  130. run: |
  131. cp dist/win/contrib/* appdir/Cryptomator
  132. - name: Set LOOPBACK_ALIAS in patchWebDAV.bat
  133. shell: pwsh
  134. run: |
  135. $patchScript = "appdir\Cryptomator\patchWebDAV.bat"
  136. try {
  137. (Get-Content $patchScript ) -replace '::REPLACE ME', "SET LOOPBACK_ALIAS=`"${{ env.LOOPBACK_ALIAS}}`"" | Set-Content $patchScript
  138. } catch {
  139. Write-Host "Failed to set LOOPBACK_ALIAS for patchWebDAV.bat"
  140. exit 1
  141. }
  142. - name: Fix permissions
  143. run: attrib -r appdir/Cryptomator/Cryptomator.exe
  144. shell: pwsh
  145. - name: Extract jars with DLLs for Codesigning
  146. shell: pwsh
  147. run: |
  148. Add-Type -AssemblyName "System.io.compression.filesystem"
  149. $jarFolder = Resolve-Path ".\appdir\Cryptomator\app\mods"
  150. $jarExtractDir = New-Item -Path ".\appdir\jar-extract" -ItemType Directory
  151. #for all jars inspect
  152. Get-ChildItem -Path $jarFolder -Filter "*.jar" | ForEach-Object {
  153. $jar = [Io.compression.zipfile]::OpenRead($_.FullName)
  154. if (@($jar.Entries | Where-Object {$_.Name.ToString().EndsWith(".dll")} | Select-Object -First 1).Count -gt 0) {
  155. #jars containing dlls extract
  156. Set-Location $jarExtractDir
  157. Expand-Archive -Path $_.FullName
  158. }
  159. $jar.Dispose()
  160. }
  161. - name: Extract wixhelper.dll for Codesigning #see https://github.com/cryptomator/cryptomator/issues/3130
  162. shell: pwsh
  163. run: |
  164. New-Item -Path appdir/jpackage-jmod -ItemType Directory
  165. & $env:JAVA_HOME\bin\jmod.exe extract --dir jpackage-jmod "${env:JAVA_HOME}\jmods\jdk.jpackage.jmod"
  166. Get-ChildItem -Recurse -Path "jpackage-jmod" -File wixhelper.dll | Select-Object -Last 1 | Copy-Item -Destination "appdir"
  167. - name: Codesign
  168. uses: skymatic/code-sign-action@v3
  169. with:
  170. certificate: ${{ secrets.WIN_CODESIGN_P12_BASE64 }}
  171. password: ${{ secrets.WIN_CODESIGN_P12_PW }}
  172. certificatesha1: 5FC94CE149E5B511E621F53A060AC67CBD446B3A
  173. description: Cryptomator
  174. timestampUrl: 'http://timestamp.digicert.com'
  175. folder: appdir
  176. recursive: true
  177. - name: Replace DLLs inside jars with signed ones
  178. shell: pwsh
  179. run: |
  180. $jarExtractDir = Resolve-Path ".\appdir\jar-extract"
  181. $jarFolder = Resolve-Path ".\appdir\Cryptomator\app\mods"
  182. Get-ChildItem -Path $jarExtractDir | ForEach-Object {
  183. $jarName = $_.Name
  184. $jarFile = "${jarFolder}\${jarName}.jar"
  185. Set-Location $_
  186. Get-ChildItem -Path $_ -Recurse -File "*.dll" | ForEach-Object {
  187. # update jar with signed dll
  188. jar --file="$jarFile" --update $(Resolve-Path -Relative -Path $_)
  189. }
  190. }
  191. - name: Generate license for MSI
  192. run: >
  193. mvn -B license:add-third-party
  194. "-Dlicense.thirdPartyFilename=license.rtf"
  195. "-Dlicense.outputDirectory=dist/win/resources"
  196. "-Dlicense.fileTemplate=dist/win/resources/licenseTemplate.ftl"
  197. "-Dlicense.includedScopes=compile"
  198. "-Dlicense.excludedGroups=^org\.cryptomator"
  199. "-Dlicense.failOnMissing=true"
  200. "-Dlicense.licenseMergesUrl=file:///${{ github.workspace }}/license/merges"
  201. shell: pwsh
  202. - name: Create MSI
  203. run: >
  204. ${JAVA_HOME}/bin/jpackage
  205. --verbose
  206. --type msi
  207. --win-upgrade-uuid bda45523-42b1-4cae-9354-a45475ed4775
  208. --app-image appdir/Cryptomator
  209. --dest installer
  210. --name Cryptomator
  211. --vendor "Skymatic GmbH"
  212. --copyright "(C) 2016 - 2024 Skymatic GmbH"
  213. --app-version "${{ needs.get-version.outputs.semVerNum }}.${{ needs.get-version.outputs.revNum}}"
  214. --win-menu
  215. --win-dir-chooser
  216. --win-shortcut-prompt
  217. --win-update-url "https:\\cryptomator.org\downloads"
  218. --win-menu-group Cryptomator
  219. --resource-dir dist/win/resources
  220. --license-file dist/win/resources/license.rtf
  221. --file-associations dist/win/resources/FAvaultFile.properties
  222. env:
  223. JP_WIXWIZARD_RESOURCES: ${{ github.workspace }}/dist/win/resources # requires abs path, used in resources/main.wxs
  224. JP_WIXHELPER_DIR: ${{ github.workspace }}\appdir
  225. - name: Codesign MSI
  226. uses: skymatic/code-sign-action@v3
  227. with:
  228. certificate: ${{ secrets.WIN_CODESIGN_P12_BASE64 }}
  229. password: ${{ secrets.WIN_CODESIGN_P12_PW }}
  230. certificatesha1: 5FC94CE149E5B511E621F53A060AC67CBD446B3A
  231. description: Cryptomator Installer
  232. timestampUrl: 'http://timestamp.digicert.com'
  233. folder: installer
  234. - name: Add possible alpha/beta tags to installer name
  235. run: mv installer/Cryptomator-*.msi Cryptomator-${{ needs.get-version.outputs.semVerStr }}-x64.msi
  236. - name: Create detached GPG signature with key 615D449FE6E6A235
  237. run: |
  238. echo "${GPG_PRIVATE_KEY}" | gpg --batch --quiet --import
  239. echo "${GPG_PASSPHRASE}" | gpg --batch --quiet --passphrase-fd 0 --pinentry-mode loopback -u 615D449FE6E6A235 --detach-sign -a Cryptomator-*.msi
  240. env:
  241. GPG_PRIVATE_KEY: ${{ secrets.RELEASES_GPG_PRIVATE_KEY }}
  242. GPG_PASSPHRASE: ${{ secrets.RELEASES_GPG_PASSPHRASE }}
  243. - name: Upload artifacts
  244. uses: actions/upload-artifact@v4
  245. with:
  246. name: msi
  247. path: |
  248. Cryptomator-*.msi
  249. Cryptomator-*.asc
  250. if-no-files-found: error
  251. - name: Publish .msi on GitHub Releases
  252. id: publish
  253. if: startsWith(github.ref, 'refs/tags/') && github.event.action == 'published'
  254. uses: softprops/action-gh-release@v1
  255. with:
  256. fail_on_unmatched_files: true
  257. token: ${{ secrets.CRYPTOBOT_RELEASE_TOKEN }}
  258. # do not change ordering of filelist, required for correct job output
  259. files: |
  260. *.msi
  261. *.asc
  262. allowlist-msi:
  263. uses: ./.github/workflows/av-whitelist.yml
  264. needs: [build-msi]
  265. with:
  266. url: ${{ needs.build-msi.outputs.download-url }}
  267. build-exe:
  268. name: Build .exe installer
  269. runs-on: windows-latest
  270. needs: [get-version, build-msi]
  271. outputs:
  272. download-url: ${{ fromJSON(steps.publish.outputs.assets)[0].browser_download_url }} #ónly set on a release
  273. steps:
  274. - uses: actions/checkout@v4
  275. - name: Download .msi
  276. uses: actions/download-artifact@v4
  277. with:
  278. name: msi
  279. path: dist/win/bundle/resources
  280. - name: Strip version info from msi file name
  281. run: mv dist/win/bundle/resources/Cryptomator*.msi dist/win/bundle/resources/Cryptomator.msi
  282. - uses: actions/setup-java@v4
  283. with:
  284. distribution: ${{ env.JAVA_DIST }}
  285. java-version: ${{ env.JAVA_VERSION }}
  286. check-latest: true
  287. cache: 'maven'
  288. - name: Generate license for exe
  289. run: >
  290. mvn -B license:add-third-party
  291. "-Dlicense.thirdPartyFilename=license.rtf"
  292. "-Dlicense.fileTemplate=dist/win/bundle/resources/licenseTemplate.ftl"
  293. "-Dlicense.outputDirectory=dist/win/bundle/resources"
  294. "-Dlicense.includedScopes=compile"
  295. "-Dlicense.excludedGroups=^org\.cryptomator"
  296. "-Dlicense.failOnMissing=true"
  297. "-Dlicense.licenseMergesUrl=file:///${{ github.workspace }}/license/merges"
  298. shell: pwsh
  299. - name: Download WinFsp
  300. run: |
  301. curl --output dist/win/bundle/resources/winfsp.msi -L ${{ env.WINFSP_MSI }}
  302. shell: pwsh
  303. - name: Download Legacy-WinFsp uninstaller
  304. run: |
  305. curl --output dist/win/bundle/resources/winfsp-uninstaller.exe -L ${{ env.WINFSP_UNINSTALLER }}
  306. shell: pwsh
  307. - name: Compile to wixObj file
  308. run: >
  309. "${WIX}/bin/candle.exe" dist/win/bundle/bundleWithWinfsp.wxs
  310. -ext WixBalExtension
  311. -ext WixUtilExtension
  312. -out dist/win/bundle/
  313. -dBundleVersion="${{ needs.get-version.outputs.semVerNum }}.${{ needs.get-version.outputs.revNum }}"
  314. -dBundleVendor="Skymatic GmbH"
  315. -dBundleCopyright="(C) 2016 - 2024 Skymatic GmbH"
  316. -dAboutUrl="https://cryptomator.org"
  317. -dHelpUrl="https://cryptomator.org/contact"
  318. -dUpdateUrl="https://cryptomator.org/downloads/"
  319. - name: Create executable with linker
  320. run: >
  321. "${WIX}/bin/light.exe" -b dist/win/ dist/win/bundle/bundleWithWinfsp.wixobj
  322. -ext WixBalExtension
  323. -ext WixUtilExtension
  324. -out installer/unsigned/Cryptomator-Installer.exe
  325. - name: Detach burn engine in preparation to sign
  326. run: >
  327. "${WIX}/bin/insignia.exe"
  328. -ib installer/unsigned/Cryptomator-Installer.exe
  329. -o tmp/engine.exe
  330. - name: Codesign burn engine
  331. uses: skymatic/code-sign-action@v3
  332. with:
  333. certificate: ${{ secrets.WIN_CODESIGN_P12_BASE64 }}
  334. password: ${{ secrets.WIN_CODESIGN_P12_PW }}
  335. certificatesha1: 5FC94CE149E5B511E621F53A060AC67CBD446B3A
  336. description: Cryptomator Installer
  337. timestampUrl: 'http://timestamp.digicert.com'
  338. folder: tmp
  339. - name: Reattach signed burn engine to installer
  340. run : >
  341. "${WIX}/bin/insignia.exe"
  342. -ab tmp/engine.exe installer/unsigned/Cryptomator-Installer.exe
  343. -o installer/Cryptomator-Installer.exe
  344. - name: Codesign EXE
  345. uses: skymatic/code-sign-action@v3
  346. with:
  347. certificate: ${{ secrets.WIN_CODESIGN_P12_BASE64 }}
  348. password: ${{ secrets.WIN_CODESIGN_P12_PW }}
  349. certificatesha1: 5FC94CE149E5B511E621F53A060AC67CBD446B3A
  350. description: Cryptomator Installer
  351. timestampUrl: 'http://timestamp.digicert.com'
  352. folder: installer
  353. - name: Add possible alpha/beta tags to installer name
  354. run: mv installer/Cryptomator-Installer.exe Cryptomator-${{ needs.get-version.outputs.semVerStr }}-x64.exe
  355. - name: Create detached GPG signature with key 615D449FE6E6A235
  356. run: |
  357. echo "${GPG_PRIVATE_KEY}" | gpg --batch --quiet --import
  358. echo "${GPG_PASSPHRASE}" | gpg --batch --quiet --passphrase-fd 0 --pinentry-mode loopback -u 615D449FE6E6A235 --detach-sign -a Cryptomator-*.exe
  359. env:
  360. GPG_PRIVATE_KEY: ${{ secrets.RELEASES_GPG_PRIVATE_KEY }}
  361. GPG_PASSPHRASE: ${{ secrets.RELEASES_GPG_PASSPHRASE }}
  362. - name: Upload artifacts
  363. uses: actions/upload-artifact@v4
  364. with:
  365. name: exe
  366. path: |
  367. Cryptomator-*.exe
  368. Cryptomator-*.asc
  369. if-no-files-found: error
  370. - name: Publish .msi on GitHub Releases
  371. id: publish
  372. if: startsWith(github.ref, 'refs/tags/') && github.event.action == 'published'
  373. uses: softprops/action-gh-release@v1
  374. with:
  375. fail_on_unmatched_files: true
  376. token: ${{ secrets.CRYPTOBOT_RELEASE_TOKEN }}
  377. # do not change ordering of filelist, required for correct job output
  378. files: |
  379. Cryptomator-*.exe
  380. Cryptomator-*.asc
  381. allowlist-exe:
  382. uses: ./.github/workflows/av-whitelist.yml
  383. needs: [build-exe]
  384. with:
  385. url: ${{ needs.build-exe.outputs.download-url }}
  386. notify-winget:
  387. name: Notify for winget-release
  388. if: startsWith(github.ref, 'refs/tags/') && github.event.action == 'published' && needs.get-version.outputs.versionType == 'stable'
  389. needs: [build-msi, get-version]
  390. runs-on: ubuntu-latest
  391. steps:
  392. - name: Slack Notification
  393. uses: rtCamp/action-slack-notify@v2
  394. env:
  395. SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK_URL }}
  396. SLACK_USERNAME: 'Cryptobot'
  397. SLACK_ICON: false
  398. SLACK_ICON_EMOJI: ':bot:'
  399. SLACK_CHANNEL: 'cryptomator-desktop'
  400. SLACK_TITLE: "MSI of ${{ github.event.repository.name }} ${{ github.event.release.tag_name }} published."
  401. SLACK_MESSAGE: "Ready to <https://github.com/${{ github.repository }}/actions/workflows/winget.yml| release to winget>."
  402. SLACK_FOOTER: false
  403. MSG_MINIMAL: true