win-exe.yml 14 KB

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