win-exe.yml 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352
  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: Codesign
  117. uses: skymatic/code-sign-action@v2
  118. with:
  119. certificate: ${{ secrets.WIN_CODESIGN_P12_BASE64 }}
  120. password: ${{ secrets.WIN_CODESIGN_P12_PW }}
  121. certificatesha1: 5FC94CE149E5B511E621F53A060AC67CBD446B3A
  122. description: Cryptomator
  123. timestampUrl: 'http://timestamp.digicert.com'
  124. folder: appdir/Cryptomator
  125. recursive: true
  126. - name: Generate license for MSI
  127. run: >
  128. mvn -B license:add-third-party
  129. "-Dlicense.thirdPartyFilename=license.rtf"
  130. "-Dlicense.outputDirectory=dist/win/resources"
  131. "-Dlicense.fileTemplate=dist/win/resources/licenseTemplate.ftl"
  132. "-Dlicense.includedScopes=compile"
  133. "-Dlicense.excludedGroups=^org\.cryptomator"
  134. "-Dlicense.failOnMissing=true"
  135. "-Dlicense.licenseMergesUrl=file:///${{ github.workspace }}/license/merges"
  136. shell: pwsh
  137. - name: Create MSI
  138. run: >
  139. ${JAVA_HOME}/bin/jpackage
  140. --verbose
  141. --type msi
  142. --win-upgrade-uuid bda45523-42b1-4cae-9354-a45475ed4775
  143. --app-image appdir/Cryptomator
  144. --dest installer
  145. --name Cryptomator
  146. --vendor "Skymatic GmbH"
  147. --copyright "(C) 2016 - 2023 Skymatic GmbH"
  148. --app-version "${{ needs.get-version.outputs.semVerNum }}"
  149. --win-menu
  150. --win-dir-chooser
  151. --win-shortcut-prompt
  152. --win-update-url "https:\\cryptomator.org"
  153. --win-menu-group Cryptomator
  154. --resource-dir dist/win/resources
  155. --license-file dist/win/resources/license.rtf
  156. --file-associations dist/win/resources/FAvaultFile.properties
  157. env:
  158. JP_WIXWIZARD_RESOURCES: ${{ github.workspace }}/dist/win/resources # requires abs path, used in resources/main.wxs
  159. - name: Codesign MSI
  160. uses: skymatic/code-sign-action@v2
  161. with:
  162. certificate: ${{ secrets.WIN_CODESIGN_P12_BASE64 }}
  163. password: ${{ secrets.WIN_CODESIGN_P12_PW }}
  164. certificatesha1: 5FC94CE149E5B511E621F53A060AC67CBD446B3A
  165. description: Cryptomator Installer
  166. timestampUrl: 'http://timestamp.digicert.com'
  167. folder: installer
  168. - name: Add possible alpha/beta tags to installer name
  169. run: mv installer/Cryptomator-*.msi Cryptomator-${{ needs.get-version.outputs.semVerStr }}-x64.msi
  170. - name: Create detached GPG signature with key 615D449FE6E6A235
  171. run: |
  172. echo "${GPG_PRIVATE_KEY}" | gpg --batch --quiet --import
  173. echo "${GPG_PASSPHRASE}" | gpg --batch --quiet --passphrase-fd 0 --pinentry-mode loopback -u 615D449FE6E6A235 --detach-sign -a Cryptomator-*.msi
  174. env:
  175. GPG_PRIVATE_KEY: ${{ secrets.RELEASES_GPG_PRIVATE_KEY }}
  176. GPG_PASSPHRASE: ${{ secrets.RELEASES_GPG_PASSPHRASE }}
  177. - name: Upload artifacts
  178. uses: actions/upload-artifact@v3
  179. with:
  180. name: msi
  181. path: |
  182. Cryptomator-*.msi
  183. Cryptomator-*.asc
  184. if-no-files-found: error
  185. - name: Publish .msi on GitHub Releases
  186. if: startsWith(github.ref, 'refs/tags/')
  187. uses: softprops/action-gh-release@v1
  188. with:
  189. fail_on_unmatched_files: true
  190. token: ${{ secrets.CRYPTOBOT_RELEASE_TOKEN }}
  191. files: |
  192. *.msi
  193. *.asc
  194. call-winget-flow:
  195. needs: [get-version, build-msi]
  196. if: github.event.action == 'published' && needs.get-version.outputs.versionType == 'stable'
  197. uses: ./.github/workflows/winget.yml
  198. with:
  199. releaseTag: ${{ github.event.release.tag_name }}
  200. secrets: inherit
  201. build-exe:
  202. name: Build .exe installer
  203. runs-on: windows-latest
  204. needs: [get-version, build-msi]
  205. steps:
  206. - uses: actions/checkout@v3
  207. - name: Download .msi
  208. uses: actions/download-artifact@v3
  209. with:
  210. name: msi
  211. path: dist/win/bundle/resources
  212. - name: Strip version info from msi file name
  213. run: mv dist/win/bundle/resources/Cryptomator*.msi dist/win/bundle/resources/Cryptomator.msi
  214. - uses: actions/setup-java@v3
  215. with:
  216. distribution: ${{ env.JAVA_DIST }}
  217. java-version: ${{ env.JAVA_VERSION }}
  218. cache: ${{ env.JAVA_CACHE }}
  219. - name: Generate license for exe
  220. run: >
  221. mvn -B license:add-third-party
  222. "-Dlicense.thirdPartyFilename=license.rtf"
  223. "-Dlicense.fileTemplate=dist/win/bundle/resources/licenseTemplate.ftl"
  224. "-Dlicense.outputDirectory=dist/win/bundle/resources"
  225. "-Dlicense.includedScopes=compile"
  226. "-Dlicense.excludedGroups=^org\.cryptomator"
  227. "-Dlicense.failOnMissing=true"
  228. "-Dlicense.licenseMergesUrl=file:///${{ github.workspace }}/license/merges"
  229. shell: pwsh
  230. - name: Download WinFsp
  231. run: |
  232. $winfspUrl= (Select-String -Path ".\dist\win\bundle\resources\winfsp-download.url" -Pattern 'https:.*').Matches.Value
  233. curl --output dist/win/bundle/resources/winfsp.msi -L $winfspUrl
  234. shell: pwsh
  235. - name: Compile to wixObj file
  236. run: >
  237. "${WIX}/bin/candle.exe" dist/win/bundle/bundleWithWinfsp.wxs
  238. -ext WixBalExtension
  239. -out dist/win/bundle/
  240. -dBundleVersion="${{ needs.get-version.outputs.semVerNum }}.${{ needs.get-version.outputs.revNum }}"
  241. -dBundleVendor="Skymatic GmbH"
  242. -dBundleCopyright="(C) 2016 - 2023 Skymatic GmbH"
  243. -dAboutUrl="https://cryptomator.org"
  244. -dHelpUrl="https://cryptomator.org/contact"
  245. -dUpdateUrl="https://cryptomator.org/downloads/"
  246. - name: Create executable with linker
  247. run: >
  248. "${WIX}/bin/light.exe" -b dist/win/ dist/win/bundle/bundleWithWinfsp.wixobj
  249. -ext WixBalExtension
  250. -out installer/unsigned/Cryptomator-Installer.exe
  251. - name: Detach burn engine in preparation to sign
  252. run: >
  253. "${WIX}/bin/insignia.exe"
  254. -ib installer/unsigned/Cryptomator-Installer.exe
  255. -o tmp/engine.exe
  256. - name: Codesign burn engine
  257. uses: skymatic/code-sign-action@v2
  258. with:
  259. certificate: ${{ secrets.WIN_CODESIGN_P12_BASE64 }}
  260. password: ${{ secrets.WIN_CODESIGN_P12_PW }}
  261. certificatesha1: 5FC94CE149E5B511E621F53A060AC67CBD446B3A
  262. description: Cryptomator Installer
  263. timestampUrl: 'http://timestamp.digicert.com'
  264. folder: tmp
  265. - name: Reattach signed burn engine to installer
  266. run : >
  267. "${WIX}/bin/insignia.exe"
  268. -ab tmp/engine.exe installer/unsigned/Cryptomator-Installer.exe
  269. -o installer/Cryptomator-Installer.exe
  270. - name: Codesign EXE
  271. uses: skymatic/code-sign-action@v2
  272. with:
  273. certificate: ${{ secrets.WIN_CODESIGN_P12_BASE64 }}
  274. password: ${{ secrets.WIN_CODESIGN_P12_PW }}
  275. certificatesha1: 5FC94CE149E5B511E621F53A060AC67CBD446B3A
  276. description: Cryptomator Installer
  277. timestampUrl: 'http://timestamp.digicert.com'
  278. folder: installer
  279. - name: Add possible alpha/beta tags to installer name
  280. run: mv installer/Cryptomator-Installer.exe Cryptomator-${{ needs.get-version.outputs.semVerStr }}-x64.exe
  281. - name: Create detached GPG signature with key 615D449FE6E6A235
  282. run: |
  283. echo "${GPG_PRIVATE_KEY}" | gpg --batch --quiet --import
  284. echo "${GPG_PASSPHRASE}" | gpg --batch --quiet --passphrase-fd 0 --pinentry-mode loopback -u 615D449FE6E6A235 --detach-sign -a Cryptomator-*.exe
  285. env:
  286. GPG_PRIVATE_KEY: ${{ secrets.RELEASES_GPG_PRIVATE_KEY }}
  287. GPG_PASSPHRASE: ${{ secrets.RELEASES_GPG_PASSPHRASE }}
  288. - name: Upload artifacts
  289. uses: actions/upload-artifact@v3
  290. with:
  291. name: exe
  292. path: |
  293. Cryptomator-*.exe
  294. Cryptomator-*.asc
  295. if-no-files-found: error
  296. - name: Publish .msi on GitHub Releases
  297. if: startsWith(github.ref, 'refs/tags/')
  298. uses: softprops/action-gh-release@v1
  299. with:
  300. fail_on_unmatched_files: true
  301. token: ${{ secrets.CRYPTOBOT_RELEASE_TOKEN }}
  302. files: |
  303. Cryptomator-*.exe
  304. Cryptomator-*.asc
  305. allowlist:
  306. name: Anti Virus Allowlisting
  307. if: startsWith(github.ref, 'refs/tags/')
  308. runs-on: ubuntu-latest
  309. needs: [build-msi, build-exe]
  310. steps:
  311. - name: Download .msi
  312. uses: actions/download-artifact@v3
  313. with:
  314. name: msi
  315. path: msi
  316. - name: Download .exe
  317. uses: actions/download-artifact@v3
  318. with:
  319. name: exe
  320. path: exe
  321. - name: Collect files
  322. run: |
  323. mkdir files
  324. cp msi/*.msi files
  325. cp exe/*.exe files
  326. - name: Upload to Kaspersky
  327. uses: SamKirkland/FTP-Deploy-Action@4.3.3
  328. with:
  329. protocol: ftps
  330. server: allowlist.kaspersky-labs.com
  331. port: 990
  332. username: ${{ secrets.ALLOWLIST_KASPERSKY_USERNAME }}
  333. password: ${{ secrets.ALLOWLIST_KASPERSKY_PASSWORD }}
  334. local-dir: files/
  335. - name: Upload to Avast
  336. uses: SamKirkland/FTP-Deploy-Action@4.3.0
  337. with:
  338. protocol: ftp
  339. server: whitelisting.avast.com
  340. port: 21
  341. username: ${{ secrets.ALLOWLIST_AVAST_USERNAME }}
  342. password: ${{ secrets.ALLOWLIST_AVAST_PASSWORD }}
  343. local-dir: files/