win-exe.yml 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360
  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. env:
  11. JAVA_VERSION: 19
  12. JAVA_DIST: 'zulu'
  13. JAVA_CACHE: 'maven'
  14. defaults:
  15. run:
  16. shell: bash
  17. jobs:
  18. get-version:
  19. uses: ./.github/workflows/get-version.yml
  20. with:
  21. version: ${{ inputs.version }}
  22. build-msi:
  23. name: Build .msi Installer
  24. runs-on: windows-latest
  25. needs: [get-version]
  26. env:
  27. LOOPBACK_ALIAS: 'cryptomator-vault'
  28. steps:
  29. - uses: actions/checkout@v3
  30. - name: Setup Java
  31. uses: actions/setup-java@v3
  32. with:
  33. distribution: ${{ env.JAVA_DIST }}
  34. java-version: ${{ env.JAVA_VERSION }}
  35. java-package: 'jdk+fx'
  36. cache: ${{ env.JAVA_CACHE }}
  37. - name: Ensure major jfx version in pom equals in jdk
  38. shell: pwsh
  39. run: |
  40. $jfxPomVersion = (&mvn help:evaluate "-Dexpression=javafx.version" -q -DforceStdout) -split "\."
  41. $jfxJdkVersion = ((Get-Content -path "${env:JAVA_HOME}/lib/javafx.properties" | Where-Object {$_ -like 'javafx.version=*' }) -replace '.*=','') -split "\."
  42. if ($jfxPomVersion[0] -ne $jfxJdkVersion[0]) {
  43. Write-Error "Major part of JavaFX version in pom($($jfxPomVersion[0])) does not match the version in JDK($($jfxJdkVersion[0])) "
  44. exit 1
  45. }
  46. - name: Set version
  47. run : mvn versions:set -DnewVersion=${{ needs.get-version.outputs.semVerStr }}
  48. - name: Run maven
  49. run: mvn -B clean package -Pdependency-check,win -DskipTests
  50. - name: Patch target dir
  51. run: |
  52. cp LICENSE.txt target
  53. cp target/cryptomator-*.jar target/mods
  54. - name: Run jlink
  55. run: >
  56. ${JAVA_HOME}/bin/jlink
  57. --verbose
  58. --output runtime
  59. --module-path "${JAVA_HOME}/jmods"
  60. --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
  61. --strip-native-commands
  62. --no-header-files
  63. --no-man-pages
  64. --strip-debug
  65. --compress=1
  66. - name: Run jpackage
  67. run: >
  68. ${JAVA_HOME}/bin/jpackage
  69. --verbose
  70. --type app-image
  71. --runtime-image runtime
  72. --input target/libs
  73. --module-path target/mods
  74. --module org.cryptomator.desktop/org.cryptomator.launcher.Cryptomator
  75. --dest appdir
  76. --name Cryptomator
  77. --vendor "Skymatic GmbH"
  78. --copyright "(C) 2016 - 2023 Skymatic GmbH"
  79. --app-version "${{ needs.get-version.outputs.semVerNum }}.${{ needs.get-version.outputs.revNum }}"
  80. --java-options "--enable-preview"
  81. --java-options "--enable-native-access=org.cryptomator.jfuse.win"
  82. --java-options "-Xss5m"
  83. --java-options "-Xmx256m"
  84. --java-options "-Dcryptomator.appVersion=\"${{ needs.get-version.outputs.semVerStr }}\""
  85. --java-options "-Dfile.encoding=\"utf-8\""
  86. --java-options "-Dcryptomator.logDir=\"~/AppData/Roaming/Cryptomator\""
  87. --java-options "-Dcryptomator.pluginDir=\"~/AppData/Roaming/Cryptomator/Plugins\""
  88. --java-options "-Dcryptomator.settingsPath=\"~/AppData/Roaming/Cryptomator/settings.json\""
  89. --java-options "-Dcryptomator.p12Path=\"~/AppData/Roaming/Cryptomator/key.p12\""
  90. --java-options "-Dcryptomator.ipcSocketPath=\"~/AppData/Roaming/Cryptomator/ipc.socket\""
  91. --java-options "-Dcryptomator.mountPointsDir=\"~/Cryptomator\""
  92. --java-options "-Dcryptomator.loopbackAlias=\"${{ env.LOOPBACK_ALIAS }}\""
  93. --java-options "-Dcryptomator.showTrayIcon=true"
  94. --java-options "-Dcryptomator.buildNumber=\"msi-${{ needs.get-version.outputs.revNum }}\""
  95. --java-options "-Dcryptomator.integrationsWin.autoStartShellLinkName=\"Cryptomator\""
  96. --java-options "-Dcryptomator.integrationsWin.keychainPaths=\"~/AppData/Roaming/Cryptomator/keychain.json\""
  97. --resource-dir dist/win/resources
  98. --icon dist/win/resources/Cryptomator.ico
  99. - name: Patch Application Directory
  100. run: |
  101. cp dist/win/contrib/* appdir/Cryptomator
  102. - name: Set LOOPBACK_ALIAS in patchWebDAV.bat
  103. shell: pwsh
  104. run: |
  105. $patchScript = "appdir\Cryptomator\patchWebDAV.bat"
  106. try {
  107. (Get-Content $patchScript ) -replace '::REPLACE ME', "SET LOOPBACK_ALIAS=`"${{ env.LOOPBACK_ALIAS}}`"" | Set-Content $patchScript
  108. } catch {
  109. Write-Host "Failed to set LOOPBACK_ALIAS for patchWebDAV.bat"
  110. exit 1
  111. }
  112. - name: Fix permissions
  113. run: attrib -r appdir/Cryptomator/Cryptomator.exe
  114. shell: pwsh
  115. - name: Extract integrations DLL for code signing
  116. shell: pwsh
  117. run: gci ./appdir/Cryptomator/app/mods/ -File integrations-win-*.jar | ForEach-Object {Set-Location -Path $_.Directory; jar --file=$($_.FullName) --extract integrations.dll }
  118. - name: Codesign
  119. uses: skymatic/code-sign-action@v2
  120. with:
  121. certificate: ${{ secrets.WIN_CODESIGN_P12_BASE64 }}
  122. password: ${{ secrets.WIN_CODESIGN_P12_PW }}
  123. certificatesha1: 5FC94CE149E5B511E621F53A060AC67CBD446B3A
  124. description: Cryptomator
  125. timestampUrl: 'http://timestamp.digicert.com'
  126. folder: appdir/Cryptomator
  127. recursive: true
  128. - name: Repack signed DLL into jar
  129. shell: pwsh
  130. run: |
  131. gci ./appdir/Cryptomator/app/mods/ -File integrations-win-*.jar | ForEach-Object {Set-Location -Path $_.Directory; jar --file=$($_.FullName) --update integrations.dll; Remove-Item integrations.dll}
  132. - name: Generate license for MSI
  133. run: >
  134. mvn -B license:add-third-party
  135. "-Dlicense.thirdPartyFilename=license.rtf"
  136. "-Dlicense.outputDirectory=dist/win/resources"
  137. "-Dlicense.fileTemplate=dist/win/resources/licenseTemplate.ftl"
  138. "-Dlicense.includedScopes=compile"
  139. "-Dlicense.excludedGroups=^org\.cryptomator"
  140. "-Dlicense.failOnMissing=true"
  141. "-Dlicense.licenseMergesUrl=file:///${{ github.workspace }}/license/merges"
  142. shell: pwsh
  143. - name: Create MSI
  144. run: >
  145. ${JAVA_HOME}/bin/jpackage
  146. --verbose
  147. --type msi
  148. --win-upgrade-uuid bda45523-42b1-4cae-9354-a45475ed4775
  149. --app-image appdir/Cryptomator
  150. --dest installer
  151. --name Cryptomator
  152. --vendor "Skymatic GmbH"
  153. --copyright "(C) 2016 - 2023 Skymatic GmbH"
  154. --app-version "${{ needs.get-version.outputs.semVerNum }}.${{ needs.get-version.outputs.revNum}}"
  155. --win-menu
  156. --win-dir-chooser
  157. --win-shortcut-prompt
  158. --win-update-url "https:\\cryptomator.org"
  159. --win-menu-group Cryptomator
  160. --resource-dir dist/win/resources
  161. --license-file dist/win/resources/license.rtf
  162. --file-associations dist/win/resources/FAvaultFile.properties
  163. env:
  164. JP_WIXWIZARD_RESOURCES: ${{ github.workspace }}/dist/win/resources # requires abs path, used in resources/main.wxs
  165. - name: Codesign MSI
  166. uses: skymatic/code-sign-action@v2
  167. with:
  168. certificate: ${{ secrets.WIN_CODESIGN_P12_BASE64 }}
  169. password: ${{ secrets.WIN_CODESIGN_P12_PW }}
  170. certificatesha1: 5FC94CE149E5B511E621F53A060AC67CBD446B3A
  171. description: Cryptomator Installer
  172. timestampUrl: 'http://timestamp.digicert.com'
  173. folder: installer
  174. - name: Add possible alpha/beta tags to installer name
  175. run: mv installer/Cryptomator-*.msi Cryptomator-${{ needs.get-version.outputs.semVerStr }}-x64.msi
  176. - name: Create detached GPG signature with key 615D449FE6E6A235
  177. run: |
  178. echo "${GPG_PRIVATE_KEY}" | gpg --batch --quiet --import
  179. echo "${GPG_PASSPHRASE}" | gpg --batch --quiet --passphrase-fd 0 --pinentry-mode loopback -u 615D449FE6E6A235 --detach-sign -a Cryptomator-*.msi
  180. env:
  181. GPG_PRIVATE_KEY: ${{ secrets.RELEASES_GPG_PRIVATE_KEY }}
  182. GPG_PASSPHRASE: ${{ secrets.RELEASES_GPG_PASSPHRASE }}
  183. - name: Upload artifacts
  184. uses: actions/upload-artifact@v3
  185. with:
  186. name: msi
  187. path: |
  188. Cryptomator-*.msi
  189. Cryptomator-*.asc
  190. if-no-files-found: error
  191. - name: Publish .msi on GitHub Releases
  192. if: startsWith(github.ref, 'refs/tags/')
  193. uses: softprops/action-gh-release@v1
  194. with:
  195. fail_on_unmatched_files: true
  196. token: ${{ secrets.CRYPTOBOT_RELEASE_TOKEN }}
  197. files: |
  198. *.msi
  199. *.asc
  200. call-winget-flow:
  201. needs: [get-version, build-msi]
  202. if: github.event.action == 'published' && needs.get-version.outputs.versionType == 'stable'
  203. uses: ./.github/workflows/winget.yml
  204. with:
  205. releaseTag: ${{ github.event.release.tag_name }}
  206. secrets: inherit
  207. build-exe:
  208. name: Build .exe installer
  209. runs-on: windows-latest
  210. needs: [get-version, build-msi]
  211. steps:
  212. - uses: actions/checkout@v3
  213. - name: Download .msi
  214. uses: actions/download-artifact@v3
  215. with:
  216. name: msi
  217. path: dist/win/bundle/resources
  218. - name: Strip version info from msi file name
  219. run: mv dist/win/bundle/resources/Cryptomator*.msi dist/win/bundle/resources/Cryptomator.msi
  220. - uses: actions/setup-java@v3
  221. with:
  222. distribution: ${{ env.JAVA_DIST }}
  223. java-version: ${{ env.JAVA_VERSION }}
  224. cache: ${{ env.JAVA_CACHE }}
  225. - name: Generate license for exe
  226. run: >
  227. mvn -B license:add-third-party
  228. "-Dlicense.thirdPartyFilename=license.rtf"
  229. "-Dlicense.fileTemplate=dist/win/bundle/resources/licenseTemplate.ftl"
  230. "-Dlicense.outputDirectory=dist/win/bundle/resources"
  231. "-Dlicense.includedScopes=compile"
  232. "-Dlicense.excludedGroups=^org\.cryptomator"
  233. "-Dlicense.failOnMissing=true"
  234. "-Dlicense.licenseMergesUrl=file:///${{ github.workspace }}/license/merges"
  235. shell: pwsh
  236. - name: Download WinFsp
  237. run: |
  238. $winfspUrl = (Select-String -Path ".\dist\win\bundle\resources\winFspMetaData.wxi" -Pattern '<\?define BundledWinFspDownloadLink="(.+)".*?>').Matches.Groups[1].Value
  239. curl --output dist/win/bundle/resources/winfsp.msi -L $winfspUrl
  240. shell: pwsh
  241. - name: Compile to wixObj file
  242. run: >
  243. "${WIX}/bin/candle.exe" dist/win/bundle/bundleWithWinfsp.wxs
  244. -ext WixBalExtension
  245. -ext WixUtilExtension
  246. -out dist/win/bundle/
  247. -dBundleVersion="${{ needs.get-version.outputs.semVerNum }}.${{ needs.get-version.outputs.revNum }}"
  248. -dBundleVendor="Skymatic GmbH"
  249. -dBundleCopyright="(C) 2016 - 2023 Skymatic GmbH"
  250. -dAboutUrl="https://cryptomator.org"
  251. -dHelpUrl="https://cryptomator.org/contact"
  252. -dUpdateUrl="https://cryptomator.org/downloads/"
  253. - name: Create executable with linker
  254. run: >
  255. "${WIX}/bin/light.exe" -b dist/win/ dist/win/bundle/bundleWithWinfsp.wixobj
  256. -ext WixBalExtension
  257. -ext WixUtilExtension
  258. -out installer/unsigned/Cryptomator-Installer.exe
  259. - name: Detach burn engine in preparation to sign
  260. run: >
  261. "${WIX}/bin/insignia.exe"
  262. -ib installer/unsigned/Cryptomator-Installer.exe
  263. -o tmp/engine.exe
  264. - name: Codesign burn engine
  265. uses: skymatic/code-sign-action@v2
  266. with:
  267. certificate: ${{ secrets.WIN_CODESIGN_P12_BASE64 }}
  268. password: ${{ secrets.WIN_CODESIGN_P12_PW }}
  269. certificatesha1: 5FC94CE149E5B511E621F53A060AC67CBD446B3A
  270. description: Cryptomator Installer
  271. timestampUrl: 'http://timestamp.digicert.com'
  272. folder: tmp
  273. - name: Reattach signed burn engine to installer
  274. run : >
  275. "${WIX}/bin/insignia.exe"
  276. -ab tmp/engine.exe installer/unsigned/Cryptomator-Installer.exe
  277. -o installer/Cryptomator-Installer.exe
  278. - name: Codesign EXE
  279. uses: skymatic/code-sign-action@v2
  280. with:
  281. certificate: ${{ secrets.WIN_CODESIGN_P12_BASE64 }}
  282. password: ${{ secrets.WIN_CODESIGN_P12_PW }}
  283. certificatesha1: 5FC94CE149E5B511E621F53A060AC67CBD446B3A
  284. description: Cryptomator Installer
  285. timestampUrl: 'http://timestamp.digicert.com'
  286. folder: installer
  287. - name: Add possible alpha/beta tags to installer name
  288. run: mv installer/Cryptomator-Installer.exe Cryptomator-${{ needs.get-version.outputs.semVerStr }}-x64.exe
  289. - name: Create detached GPG signature with key 615D449FE6E6A235
  290. run: |
  291. echo "${GPG_PRIVATE_KEY}" | gpg --batch --quiet --import
  292. echo "${GPG_PASSPHRASE}" | gpg --batch --quiet --passphrase-fd 0 --pinentry-mode loopback -u 615D449FE6E6A235 --detach-sign -a Cryptomator-*.exe
  293. env:
  294. GPG_PRIVATE_KEY: ${{ secrets.RELEASES_GPG_PRIVATE_KEY }}
  295. GPG_PASSPHRASE: ${{ secrets.RELEASES_GPG_PASSPHRASE }}
  296. - name: Upload artifacts
  297. uses: actions/upload-artifact@v3
  298. with:
  299. name: exe
  300. path: |
  301. Cryptomator-*.exe
  302. Cryptomator-*.asc
  303. if-no-files-found: error
  304. - name: Publish .msi on GitHub Releases
  305. if: startsWith(github.ref, 'refs/tags/')
  306. uses: softprops/action-gh-release@v1
  307. with:
  308. fail_on_unmatched_files: true
  309. token: ${{ secrets.CRYPTOBOT_RELEASE_TOKEN }}
  310. files: |
  311. Cryptomator-*.exe
  312. Cryptomator-*.asc
  313. allowlist:
  314. name: Anti Virus Allowlisting
  315. if: startsWith(github.ref, 'refs/tags/')
  316. runs-on: ubuntu-latest
  317. needs: [build-msi, build-exe]
  318. steps:
  319. - name: Download .msi
  320. uses: actions/download-artifact@v3
  321. with:
  322. name: msi
  323. path: msi
  324. - name: Download .exe
  325. uses: actions/download-artifact@v3
  326. with:
  327. name: exe
  328. path: exe
  329. - name: Collect files
  330. run: |
  331. mkdir files
  332. cp msi/*.msi files
  333. cp exe/*.exe files
  334. - name: Upload to Kaspersky
  335. uses: SamKirkland/FTP-Deploy-Action@4.3.3
  336. with:
  337. protocol: ftps
  338. server: allowlist.kaspersky-labs.com
  339. port: 990
  340. username: ${{ secrets.ALLOWLIST_KASPERSKY_USERNAME }}
  341. password: ${{ secrets.ALLOWLIST_KASPERSKY_PASSWORD }}
  342. local-dir: files/
  343. - name: Upload to Avast
  344. uses: SamKirkland/FTP-Deploy-Action@4.3.0
  345. with:
  346. protocol: ftp
  347. server: whitelisting.avast.com
  348. port: 21
  349. username: ${{ secrets.ALLOWLIST_AVAST_USERNAME }}
  350. password: ${{ secrets.ALLOWLIST_AVAST_PASSWORD }}
  351. local-dir: files/