win-exe.yml 15 KB

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