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