mac-dmg.yml 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241
  1. name: Build macOS .dmg
  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. jobs:
  13. get-version:
  14. uses: ./.github/workflows/get-version.yml
  15. with:
  16. version: ${{ inputs.version }}
  17. build:
  18. name: Build Cryptomator.app for ${{ matrix.output-suffix }}
  19. runs-on: ${{ matrix.os }}
  20. needs: [get-version]
  21. strategy:
  22. fail-fast: false
  23. matrix:
  24. include:
  25. - os: macos-11
  26. architecture: x64
  27. output-suffix: x64
  28. xcode-path: '/Applications/Xcode_13.2.1.app'
  29. - os: [self-hosted, macOS, ARM64]
  30. architecture: aarch64
  31. output-suffix: arm64
  32. xcode-path: '/Applications/Xcode_13.2.1.app'
  33. steps:
  34. - uses: actions/checkout@v3
  35. - name: Setup Java
  36. uses: actions/setup-java@v3
  37. with:
  38. distribution: 'zulu'
  39. java-version: ${{ env.JAVA_VERSION }}
  40. java-package: 'jdk+fx'
  41. architecture: ${{ matrix.architecture }}
  42. cache: 'maven'
  43. - name: Ensure major jfx version in pom equals in jdk
  44. if: ${{ !contains(matrix.os, 'self-hosted') }}
  45. shell: pwsh
  46. run: |
  47. $jfxPomVersion = (&mvn help:evaluate "-Dexpression=javafx.version" -q -DforceStdout) -split "\."
  48. $jfxJdkVersion = ((Get-Content -path "${env:JAVA_HOME}/lib/javafx.properties" | Where-Object {$_ -like 'javafx.version=*' }) -replace '.*=','') -split "\."
  49. if ($jfxPomVersion[0] -ne $jfxJdkVersion[0]) {
  50. Write-Error "Major part of JavaFX version in pom($($jfxPomVersion[0])) does not match the version in JDK($($jfxJdkVersion[0])) "
  51. exit 1
  52. }
  53. - name: Set version
  54. run : mvn versions:set -DnewVersion=${{ needs.get-version.outputs.semVerStr }}
  55. - name: Run maven
  56. run: mvn -B clean package -Pdependency-check,mac -DskipTests
  57. - name: Patch target dir
  58. run: |
  59. cp LICENSE.txt target
  60. cp dist/mac/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.instrument,java.logging,java.naming,java.net.http,java.scripting,java.sql,java.xml,javafx.base,javafx.graphics,javafx.controls,javafx.fxml,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 "${{ needs.get-version.outputs.semVerNum }}"
  88. --java-options "-Xss5m"
  89. --java-options "-Xmx256m"
  90. --java-options "-Dfile.encoding=\"utf-8\""
  91. --java-options "-Dapple.awt.enableTemplateImages=true"
  92. --java-options "-Dsun.java2d.metal=true"
  93. --java-options "-Dcryptomator.appVersion=\"${{ needs.get-version.outputs.semVerStr }}\""
  94. --java-options "-Dcryptomator.logDir=\"~/Library/Logs/Cryptomator\""
  95. --java-options "-Dcryptomator.pluginDir=\"~/Library/Application Support/Cryptomator/Plugins\""
  96. --java-options "-Dcryptomator.settingsPath=\"~/Library/Application Support/Cryptomator/settings.json\""
  97. --java-options "-Dcryptomator.p12Path=\"~/Library/Application Support/Cryptomator/key.p12\""
  98. --java-options "-Dcryptomator.ipcSocketPath=\"~/Library/Application Support/Cryptomator/ipc.socket\""
  99. --java-options "-Dcryptomator.integrationsMac.keychainServiceName=\"Cryptomator\""
  100. --java-options "-Dcryptomator.showTrayIcon=true"
  101. --java-options "-Dcryptomator.buildNumber=\"dmg-${{ needs.get-version.outputs.revNum }}\""
  102. --mac-package-identifier org.cryptomator
  103. --resource-dir dist/mac/resources
  104. - name: Patch Cryptomator.app
  105. run: |
  106. mv appdir/Cryptomator.app Cryptomator.app
  107. mv dist/mac/resources/Cryptomator-Vault.icns Cryptomator.app/Contents/Resources/
  108. sed -i '' "s|###BUNDLE_SHORT_VERSION_STRING###|${VERSION_NO}|g" Cryptomator.app/Contents/Info.plist
  109. sed -i '' "s|###BUNDLE_VERSION###|${REVISION_NO}|g" Cryptomator.app/Contents/Info.plist
  110. env:
  111. VERSION_NO: ${{ needs.get-version.outputs.semVerNum }}
  112. REVISION_NO: ${{ needs.get-version.outputs.revNum }}
  113. - name: Generate license for dmg
  114. run: >
  115. mvn -B license:add-third-party
  116. -Dlicense.thirdPartyFilename=license.rtf
  117. -Dlicense.outputDirectory=dist/mac/dmg/resources
  118. -Dlicense.fileTemplate=dist/mac/dmg/resources/licenseTemplate.ftl
  119. -Dlicense.includedScopes=compile
  120. -Dlicense.excludedGroups=^org\.cryptomator
  121. -Dlicense.failOnMissing=true
  122. -Dlicense.licenseMergesUrl=file://${{ github.workspace }}/license/merges
  123. - name: Install codesign certificate
  124. run: |
  125. # create variables
  126. CERTIFICATE_PATH=$RUNNER_TEMP/codesign.p12
  127. KEYCHAIN_PATH=$RUNNER_TEMP/codesign.keychain-db
  128. # import certificate and provisioning profile from secrets
  129. echo -n "$CODESIGN_P12_BASE64" | base64 --decode --output $CERTIFICATE_PATH
  130. # create temporary keychain
  131. security create-keychain -p "$CODESIGN_TMP_KEYCHAIN_PW" $KEYCHAIN_PATH
  132. security set-keychain-settings -lut 900 $KEYCHAIN_PATH
  133. security unlock-keychain -p "$CODESIGN_TMP_KEYCHAIN_PW" $KEYCHAIN_PATH
  134. # import certificate to keychain
  135. security import $CERTIFICATE_PATH -P "$CODESIGN_P12_PW" -A -t cert -f pkcs12 -k $KEYCHAIN_PATH
  136. security list-keychain -d user -s $KEYCHAIN_PATH
  137. env:
  138. CODESIGN_P12_BASE64: ${{ secrets.MACOS_CODESIGN_P12_BASE64 }}
  139. CODESIGN_P12_PW: ${{ secrets.MACOS_CODESIGN_P12_PW }}
  140. CODESIGN_TMP_KEYCHAIN_PW: ${{ secrets.MACOS_CODESIGN_TMP_KEYCHAIN_PW }}
  141. - name: Codesign
  142. run: |
  143. echo "Codesigning jdk files..."
  144. find Cryptomator.app/Contents/runtime/Contents/Home/lib/ -name '*.dylib' -exec codesign --force -s ${CODESIGN_IDENTITY} {} \;
  145. find Cryptomator.app/Contents/runtime/Contents/Home/lib/ -name 'jspawnhelper' -exec codesign --force -o runtime -s ${CODESIGN_IDENTITY} {} \;
  146. echo "Codesigning jar contents..."
  147. find Cryptomator.app/Contents/runtime/Contents/MacOS -name '*.dylib' -exec codesign --force -s ${CODESIGN_IDENTITY} {} \;
  148. for JAR_PATH in `find Cryptomator.app -name "*.jar"`; do
  149. if [[ `unzip -l ${JAR_PATH} | grep '.dylib\|.jnilib'` ]]; then
  150. JAR_FILENAME=$(basename ${JAR_PATH})
  151. OUTPUT_PATH=${JAR_PATH%.*}
  152. echo "Codesigning libs in ${JAR_FILENAME}..."
  153. unzip -q ${JAR_PATH} -d ${OUTPUT_PATH}
  154. find ${OUTPUT_PATH} -name '*.dylib' -exec codesign --force -s ${CODESIGN_IDENTITY} {} \;
  155. find ${OUTPUT_PATH} -name '*.jnilib' -exec codesign --force -s ${CODESIGN_IDENTITY} {} \;
  156. rm ${JAR_PATH}
  157. pushd ${OUTPUT_PATH} > /dev/null
  158. zip -qr ../${JAR_FILENAME} *
  159. popd > /dev/null
  160. rm -r ${OUTPUT_PATH}
  161. fi
  162. done
  163. echo "Codesigning Cryptomator.app..."
  164. codesign --force --deep --entitlements dist/mac/Cryptomator.entitlements -o runtime -s ${CODESIGN_IDENTITY} Cryptomator.app
  165. env:
  166. CODESIGN_IDENTITY: ${{ secrets.MACOS_CODESIGN_IDENTITY }}
  167. - name: Prepare .dmg contents
  168. run: |
  169. mkdir dmg
  170. mv Cryptomator.app dmg
  171. cp dist/mac/dmg/resources/macFUSE.webloc dmg
  172. ls -l dmg
  173. - name: Install create-dmg
  174. run: |
  175. brew install create-dmg
  176. create-dmg --help
  177. - name: Create .dmg
  178. run: >
  179. create-dmg
  180. --volname Cryptomator
  181. --volicon "dist/mac/dmg/resources/Cryptomator-Volume.icns"
  182. --background "dist/mac/dmg/resources/Cryptomator-background.tiff"
  183. --window-pos 400 100
  184. --window-size 640 694
  185. --icon-size 128
  186. --icon "Cryptomator.app" 128 245
  187. --hide-extension "Cryptomator.app"
  188. --icon "macFUSE.webloc" 320 501
  189. --hide-extension "macFUSE.webloc"
  190. --app-drop-link 512 245
  191. --eula "dist/mac/dmg/resources/license.rtf"
  192. --icon ".background" 128 758
  193. --icon ".fseventsd" 320 758
  194. --icon ".VolumeIcon.icns" 512 758
  195. Cryptomator-${VERSION_NO}-${{ matrix.output-suffix }}.dmg dmg
  196. env:
  197. VERSION_NO: ${{ needs.get-version.outputs.semVerNum }}
  198. - name: Notarize .dmg
  199. if: startsWith(github.ref, 'refs/tags/')
  200. uses: cocoalibs/xcode-notarization-action@v1
  201. with:
  202. app-path: 'Cryptomator-*.dmg'
  203. apple-id: ${{ secrets.MACOS_NOTARIZATION_APPLE_ID }}
  204. password: ${{ secrets.MACOS_NOTARIZATION_PW }}
  205. team-id: ${{ secrets.MACOS_NOTARIZATION_TEAM_ID }}
  206. xcode-path: ${{ matrix.xcode-path }}
  207. - name: Add possible alpha/beta tags to installer name
  208. run: mv Cryptomator-*.dmg Cryptomator-${{ needs.get-version.outputs.semVerStr }}-${{ matrix.output-suffix }}.dmg
  209. - name: Create detached GPG signature with key 615D449FE6E6A235
  210. run: |
  211. echo "${GPG_PRIVATE_KEY}" | gpg --batch --quiet --import
  212. echo "${GPG_PASSPHRASE}" | gpg --batch --quiet --passphrase-fd 0 --pinentry-mode loopback -u 615D449FE6E6A235 --detach-sign -a Cryptomator-*.dmg
  213. env:
  214. GPG_PRIVATE_KEY: ${{ secrets.RELEASES_GPG_PRIVATE_KEY }}
  215. GPG_PASSPHRASE: ${{ secrets.RELEASES_GPG_PASSPHRASE }}
  216. - name: Clean up codesign certificate
  217. if: ${{ always() }}
  218. run: security delete-keychain $RUNNER_TEMP/codesign.keychain-db
  219. continue-on-error: true
  220. - name: Upload artifacts
  221. uses: actions/upload-artifact@v3
  222. with:
  223. name: dmg-${{ matrix.output-suffix }}
  224. path: Cryptomator-*.dmg
  225. if-no-files-found: error
  226. - name: Publish dmg on GitHub Releases
  227. if: startsWith(github.ref, 'refs/tags/')
  228. uses: softprops/action-gh-release@v1
  229. with:
  230. fail_on_unmatched_files: true
  231. token: ${{ secrets.CRYPTOBOT_RELEASE_TOKEN }}
  232. files: |
  233. Cryptomator-*.dmg
  234. Cryptomator-*.asc