win-exe.yml 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350
  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. call-winget-flow:
  193. needs: [get-version, build-msi]
  194. if: github.event.action == 'published' && needs.get-version.outputs.versionType == 'stable'
  195. uses: ./.github/workflows/winget.yml
  196. with:
  197. releaseTag: ${{ github.event.release.tag_name }}
  198. secrets: inherit
  199. build-exe:
  200. name: Build .exe installer
  201. runs-on: windows-latest
  202. needs: [get-version, build-msi]
  203. steps:
  204. - uses: actions/checkout@v3
  205. - name: Download .msi
  206. uses: actions/download-artifact@v3
  207. with:
  208. name: msi
  209. path: dist/win/bundle/resources
  210. - name: Strip version info from msi file name
  211. run: mv dist/win/bundle/resources/Cryptomator*.msi dist/win/bundle/resources/Cryptomator.msi
  212. - uses: actions/setup-java@v3
  213. with:
  214. distribution: ${{ env.JAVA_DIST }}
  215. java-version: ${{ env.JAVA_VERSION }}
  216. cache: ${{ env.JAVA_CACHE }}
  217. - name: Generate license for exe
  218. run: >
  219. mvn -B license:add-third-party
  220. "-Dlicense.thirdPartyFilename=license.rtf"
  221. "-Dlicense.fileTemplate=dist/win/bundle/resources/licenseTemplate.ftl"
  222. "-Dlicense.outputDirectory=dist/win/bundle/resources"
  223. "-Dlicense.includedScopes=compile"
  224. "-Dlicense.excludedGroups=^org\.cryptomator"
  225. "-Dlicense.failOnMissing=true"
  226. "-Dlicense.licenseMergesUrl=file:///${{ github.workspace }}/license/merges"
  227. shell: pwsh
  228. - name: Download WinFsp
  229. run: |
  230. $winfspUrl= (Select-String -Path ".\dist\win\bundle\resources\winfsp-download.url" -Pattern 'https:.*').Matches.Value
  231. curl --output dist/win/bundle/resources/winfsp.msi -L $winfspUrl
  232. shell: pwsh
  233. - name: Compile to wixObj file
  234. run: >
  235. "${WIX}/bin/candle.exe" dist/win/bundle/bundleWithWinfsp.wxs
  236. -ext WixBalExtension
  237. -out dist/win/bundle/
  238. -dBundleVersion="${{ needs.get-version.outputs.semVerNum }}.${{ needs.get-version.outputs.revNum }}"
  239. -dBundleVendor="Skymatic GmbH"
  240. -dBundleCopyright="(C) 2016 - 2022 Skymatic GmbH"
  241. -dAboutUrl="https://cryptomator.org"
  242. -dHelpUrl="https://cryptomator.org/contact"
  243. -dUpdateUrl="https://cryptomator.org/downloads/"
  244. - name: Create executable with linker
  245. run: >
  246. "${WIX}/bin/light.exe" -b dist/win/ dist/win/bundle/bundleWithWinfsp.wixobj
  247. -ext WixBalExtension
  248. -out installer/unsigned/Cryptomator-Installer.exe
  249. - name: Detach burn engine in preparation to sign
  250. run: >
  251. "${WIX}/bin/insignia.exe"
  252. -ib installer/unsigned/Cryptomator-Installer.exe
  253. -o tmp/engine.exe
  254. - name: Codesign burn engine
  255. uses: skymatic/code-sign-action@v2
  256. with:
  257. certificate: ${{ secrets.WIN_CODESIGN_P12_BASE64 }}
  258. password: ${{ secrets.WIN_CODESIGN_P12_PW }}
  259. certificatesha1: 5FC94CE149E5B511E621F53A060AC67CBD446B3A
  260. description: Cryptomator Installer
  261. timestampUrl: 'http://timestamp.digicert.com'
  262. folder: tmp
  263. - name: Reattach signed burn engine to installer
  264. run : >
  265. "${WIX}/bin/insignia.exe"
  266. -ab tmp/engine.exe installer/unsigned/Cryptomator-Installer.exe
  267. -o installer/Cryptomator-Installer.exe
  268. - name: Codesign EXE
  269. uses: skymatic/code-sign-action@v2
  270. with:
  271. certificate: ${{ secrets.WIN_CODESIGN_P12_BASE64 }}
  272. password: ${{ secrets.WIN_CODESIGN_P12_PW }}
  273. certificatesha1: 5FC94CE149E5B511E621F53A060AC67CBD446B3A
  274. description: Cryptomator Installer
  275. timestampUrl: 'http://timestamp.digicert.com'
  276. folder: installer
  277. - name: Add possible alpha/beta tags to installer name
  278. run: mv installer/Cryptomator-Installer.exe Cryptomator-${{ needs.get-version.outputs.semVerStr }}-x64.exe
  279. - name: Create detached GPG signature with key 615D449FE6E6A235
  280. run: |
  281. echo "${GPG_PRIVATE_KEY}" | gpg --batch --quiet --import
  282. echo "${GPG_PASSPHRASE}" | gpg --batch --quiet --passphrase-fd 0 --pinentry-mode loopback -u 615D449FE6E6A235 --detach-sign -a Cryptomator-*.exe
  283. env:
  284. GPG_PRIVATE_KEY: ${{ secrets.RELEASES_GPG_PRIVATE_KEY }}
  285. GPG_PASSPHRASE: ${{ secrets.RELEASES_GPG_PASSPHRASE }}
  286. - name: Upload artifacts
  287. uses: actions/upload-artifact@v3
  288. with:
  289. name: exe
  290. path: |
  291. Cryptomator-*.exe
  292. Cryptomator-*.asc
  293. if-no-files-found: error
  294. - name: Publish .msi on GitHub Releases
  295. if: startsWith(github.ref, 'refs/tags/')
  296. uses: softprops/action-gh-release@v1
  297. with:
  298. fail_on_unmatched_files: true
  299. token: ${{ secrets.CRYPTOBOT_RELEASE_TOKEN }}
  300. files: |
  301. Cryptomator-*.exe
  302. Cryptomator-*.asc
  303. allowlist:
  304. name: Anti Virus Allowlisting
  305. if: startsWith(github.ref, 'refs/tags/')
  306. runs-on: ubuntu-latest
  307. needs: [build-msi, build-exe]
  308. steps:
  309. - name: Download .msi
  310. uses: actions/download-artifact@v3
  311. with:
  312. name: msi
  313. path: msi
  314. - name: Download .exe
  315. uses: actions/download-artifact@v3
  316. with:
  317. name: exe
  318. path: exe
  319. - name: Collect files
  320. run: |
  321. mkdir files
  322. cp msi/*.msi files
  323. cp exe/*.exe files
  324. - name: Upload to Kaspersky
  325. uses: SamKirkland/FTP-Deploy-Action@4.3.3
  326. with:
  327. protocol: ftps
  328. server: allowlist.kaspersky-labs.com
  329. port: 990
  330. username: ${{ secrets.ALLOWLIST_KASPERSKY_USERNAME }}
  331. password: ${{ secrets.ALLOWLIST_KASPERSKY_PASSWORD }}
  332. local-dir: files/
  333. - name: Upload to Avast
  334. uses: SamKirkland/FTP-Deploy-Action@4.3.0
  335. with:
  336. protocol: ftp
  337. server: whitelisting.avast.com
  338. port: 21
  339. username: ${{ secrets.ALLOWLIST_AVAST_USERNAME }}
  340. password: ${{ secrets.ALLOWLIST_AVAST_PASSWORD }}
  341. local-dir: files/