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