win-exe.yml 14 KB

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