win-exe.yml 11 KB

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