mac-dmg.yml 9.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227
  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: ${{ github.event.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: Set version
  44. run : mvn versions:set -DnewVersion=${{ needs.get-version.outputs.semVerStr }}
  45. - name: Run maven
  46. run: mvn -B clean package -Pdependency-check,mac -DskipTests
  47. - name: Patch target dir
  48. run: |
  49. cp LICENSE.txt target
  50. cp dist/mac/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.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
  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 "${{ needs.get-version.outputs.semVerNum }}"
  78. --java-options "-Xss5m"
  79. --java-options "-Xmx256m"
  80. --java-options "-Dfile.encoding=\"utf-8\""
  81. --java-options "-Dapple.awt.enableTemplateImages=true"
  82. --java-options "-Dsun.java2d.metal=true"
  83. --java-options "-Dcryptomator.appVersion=\"${{ needs.get-version.outputs.semVerStr }}\""
  84. --java-options "-Dcryptomator.logDir=\"~/Library/Logs/Cryptomator\""
  85. --java-options "-Dcryptomator.pluginDir=\"~/Library/Application Support/Cryptomator/Plugins\""
  86. --java-options "-Dcryptomator.settingsPath=\"~/Library/Application Support/Cryptomator/settings.json\""
  87. --java-options "-Dcryptomator.p12Path=\"~/Library/Application Support/Cryptomator/key.p12\""
  88. --java-options "-Dcryptomator.ipcSocketPath=\"~/Library/Application Support/Cryptomator/ipc.socket\""
  89. --java-options "-Dcryptomator.integrationsMac.keychainServiceName=\"Cryptomator\""
  90. --java-options "-Dcryptomator.showTrayIcon=true"
  91. --java-options "-Dcryptomator.buildNumber=\"dmg-${{ needs.get-version.outputs.revNum }}\""
  92. --mac-package-identifier org.cryptomator
  93. --resource-dir dist/mac/resources
  94. - name: Patch Cryptomator.app
  95. run: |
  96. mv appdir/Cryptomator.app Cryptomator.app
  97. mv dist/mac/resources/Cryptomator-Vault.icns Cryptomator.app/Contents/Resources/
  98. sed -i '' "s|###BUNDLE_SHORT_VERSION_STRING###|${VERSION_NO}|g" Cryptomator.app/Contents/Info.plist
  99. sed -i '' "s|###BUNDLE_VERSION###|${REVISION_NO}|g" Cryptomator.app/Contents/Info.plist
  100. env:
  101. VERSION_NO: ${{ needs.get-version.outputs.semVerNum }}
  102. REVISION_NO: ${{ needs.get-version.outputs.revNum }}
  103. - name: Generate license for dmg
  104. run: >
  105. mvn -B license:add-third-party
  106. -Dlicense.thirdPartyFilename=license.rtf
  107. -Dlicense.outputDirectory=dist/mac/dmg/resources
  108. -Dlicense.fileTemplate=dist/mac/dmg/resources/licenseTemplate.ftl
  109. -Dlicense.includedScopes=compile
  110. -Dlicense.excludedGroups=^org\.cryptomator
  111. -Dlicense.failOnMissing=true
  112. -Dlicense.licenseMergesUrl=file://${{ github.workspace }}/license/merges
  113. - name: Install codesign certificate
  114. run: |
  115. # create variables
  116. CERTIFICATE_PATH=$RUNNER_TEMP/codesign.p12
  117. KEYCHAIN_PATH=$RUNNER_TEMP/codesign.keychain-db
  118. # import certificate and provisioning profile from secrets
  119. echo -n "$CODESIGN_P12_BASE64" | base64 --decode --output $CERTIFICATE_PATH
  120. # create temporary keychain
  121. security create-keychain -p "$CODESIGN_TMP_KEYCHAIN_PW" $KEYCHAIN_PATH
  122. security set-keychain-settings -lut 900 $KEYCHAIN_PATH
  123. security unlock-keychain -p "$CODESIGN_TMP_KEYCHAIN_PW" $KEYCHAIN_PATH
  124. # import certificate to keychain
  125. security import $CERTIFICATE_PATH -P "$CODESIGN_P12_PW" -A -t cert -f pkcs12 -k $KEYCHAIN_PATH
  126. security list-keychain -d user -s $KEYCHAIN_PATH
  127. env:
  128. CODESIGN_P12_BASE64: ${{ secrets.MACOS_CODESIGN_P12_BASE64 }}
  129. CODESIGN_P12_PW: ${{ secrets.MACOS_CODESIGN_P12_PW }}
  130. CODESIGN_TMP_KEYCHAIN_PW: ${{ secrets.MACOS_CODESIGN_TMP_KEYCHAIN_PW }}
  131. - name: Codesign
  132. run: |
  133. find Cryptomator.app/Contents/runtime/Contents/MacOS -name '*.dylib' -exec codesign --force -s ${CODESIGN_IDENTITY} {} \;
  134. for JAR_PATH in `find Cryptomator.app -name "*.jar"`; do
  135. if [[ `unzip -l ${JAR_PATH} | grep '.dylib\|.jnilib'` ]]; then
  136. JAR_FILENAME=$(basename ${JAR_PATH})
  137. OUTPUT_PATH=${JAR_PATH%.*}
  138. echo "Codesigning libs in ${JAR_FILENAME}..."
  139. unzip -q ${JAR_PATH} -d ${OUTPUT_PATH}
  140. find ${OUTPUT_PATH} -name '*.dylib' -exec codesign --force -s ${CODESIGN_IDENTITY} {} \;
  141. find ${OUTPUT_PATH} -name '*.jnilib' -exec codesign --force -s ${CODESIGN_IDENTITY} {} \;
  142. rm ${JAR_PATH}
  143. pushd ${OUTPUT_PATH} > /dev/null
  144. zip -qr ../${JAR_FILENAME} *
  145. popd > /dev/null
  146. rm -r ${OUTPUT_PATH}
  147. fi
  148. done
  149. echo "Codesigning Cryptomator.app..."
  150. codesign --force --deep --entitlements dist/mac/Cryptomator.entitlements -o runtime -s ${CODESIGN_IDENTITY} Cryptomator.app
  151. env:
  152. CODESIGN_IDENTITY: ${{ secrets.MACOS_CODESIGN_IDENTITY }}
  153. - name: Prepare .dmg contents
  154. run: |
  155. mkdir dmg
  156. mv Cryptomator.app dmg
  157. cp dist/mac/dmg/resources/macFUSE.webloc dmg
  158. ls -l dmg
  159. - name: Install create-dmg
  160. run: |
  161. brew install create-dmg
  162. create-dmg --help
  163. - name: Create .dmg
  164. run: >
  165. create-dmg
  166. --volname Cryptomator
  167. --volicon "dist/mac/dmg/resources/Cryptomator-Volume.icns"
  168. --background "dist/mac/dmg/resources/Cryptomator-background.tiff"
  169. --window-pos 400 100
  170. --window-size 640 694
  171. --icon-size 128
  172. --icon "Cryptomator.app" 128 245
  173. --hide-extension "Cryptomator.app"
  174. --icon "macFUSE.webloc" 320 501
  175. --hide-extension "macFUSE.webloc"
  176. --app-drop-link 512 245
  177. --eula "dist/mac/dmg/resources/license.rtf"
  178. --icon ".background" 128 758
  179. --icon ".fseventsd" 320 758
  180. --icon ".VolumeIcon.icns" 512 758
  181. Cryptomator-${VERSION_NO}-${{ matrix.output-suffix }}.dmg dmg
  182. env:
  183. VERSION_NO: ${{ needs.get-version.outputs.semVerNum }}
  184. - name: Notarize .dmg
  185. if: startsWith(github.ref, 'refs/tags/')
  186. uses: cocoalibs/xcode-notarization-action@v1
  187. with:
  188. app-path: 'Cryptomator-*.dmg'
  189. apple-id: ${{ secrets.MACOS_NOTARIZATION_APPLE_ID }}
  190. password: ${{ secrets.MACOS_NOTARIZATION_PW }}
  191. team-id: ${{ secrets.MACOS_NOTARIZATION_TEAM_ID }}
  192. xcode-path: ${{ matrix.xcode-path }}
  193. - name: Add possible alpha/beta tags to installer name
  194. run: mv Cryptomator-*.dmg Cryptomator-${{ needs.get-version.outputs.semVerStr }}-${{ matrix.output-suffix }}.dmg
  195. - name: Create detached GPG signature with key 615D449FE6E6A235
  196. run: |
  197. echo "${GPG_PRIVATE_KEY}" | gpg --batch --quiet --import
  198. echo "${GPG_PASSPHRASE}" | gpg --batch --quiet --passphrase-fd 0 --pinentry-mode loopback -u 615D449FE6E6A235 --detach-sign -a Cryptomator-*.dmg
  199. env:
  200. GPG_PRIVATE_KEY: ${{ secrets.RELEASES_GPG_PRIVATE_KEY }}
  201. GPG_PASSPHRASE: ${{ secrets.RELEASES_GPG_PASSPHRASE }}
  202. - name: Clean up codesign certificate
  203. if: ${{ always() }}
  204. run: security delete-keychain $RUNNER_TEMP/codesign.keychain-db
  205. continue-on-error: true
  206. - name: Upload artifacts
  207. uses: actions/upload-artifact@v3
  208. with:
  209. name: dmg-${{ matrix.output-suffix }}
  210. path: Cryptomator-*.dmg
  211. if-no-files-found: error
  212. - name: Publish dmg on GitHub Releases
  213. if: startsWith(github.ref, 'refs/tags/')
  214. uses: softprops/action-gh-release@v1
  215. with:
  216. fail_on_unmatched_files: true
  217. token: ${{ secrets.CRYPTOBOT_RELEASE_TOKEN }}
  218. files: |
  219. Cryptomator-*.dmg
  220. Cryptomator-*.asc