win-exe.yml 10 KB

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