win-exe.yml 15 KB

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