win-exe.yml 13 KB

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