mac-dmg.yml 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250
  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: 17
  12. jobs:
  13. build:
  14. name: Build Cryptomator.app
  15. runs-on: macos-11
  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. elif [[ "${{ github.event.inputs.version }}" =~ [0-9]+\.[0-9]+\.[0-9]+.* ]]; then
  33. SEM_VER_STR="${{ github.event.inputs.version }}"
  34. mvn versions:set -DnewVersion=${SEM_VER_STR}
  35. else
  36. SEM_VER_STR=`mvn help:evaluate -Dexpression=project.version -q -DforceStdout`
  37. fi
  38. SEM_VER_NUM=`echo ${SEM_VER_STR} | sed -E 's/([0-9]+\.[0-9]+\.[0-9]+).*/\1/'`
  39. REVCOUNT=`git rev-list --count HEAD`
  40. echo "::set-output name=semVerStr::${SEM_VER_STR}"
  41. echo "::set-output name=semVerNum::${SEM_VER_NUM}"
  42. echo "::set-output name=revNum::${REVCOUNT}"
  43. - name: Validate Version
  44. uses: skymatic/semver-validation-action@v1
  45. with:
  46. version: ${{ steps.versions.outputs.semVerStr }}
  47. - name: Run maven
  48. run: mvn -B clean package -Pdependency-check,mac -DskipTests
  49. - name: Patch target dir
  50. run: |
  51. cp LICENSE.txt target
  52. cp dist/mac/launcher.sh target
  53. cp target/cryptomator-*.jar target/mods
  54. - name: Run jlink
  55. run: >
  56. ${JAVA_HOME}/bin/jlink
  57. --verbose
  58. --output runtime
  59. --module-path "${JAVA_HOME}/jmods"
  60. --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
  61. --strip-native-commands
  62. --no-header-files
  63. --no-man-pages
  64. --strip-debug
  65. --compress=1
  66. - name: Run jpackage
  67. run: >
  68. ${JAVA_HOME}/bin/jpackage
  69. --verbose
  70. --type app-image
  71. --runtime-image runtime
  72. --input target/libs
  73. --module-path target/mods
  74. --module org.cryptomator.desktop/org.cryptomator.launcher.Cryptomator
  75. --dest appdir
  76. --name Cryptomator
  77. --vendor "Skymatic GmbH"
  78. --copyright "(C) 2016 - 2022 Skymatic GmbH"
  79. --app-version "${{ steps.versions.outputs.semVerNum }}"
  80. --java-options "-Xss5m"
  81. --java-options "-Xmx256m"
  82. --java-options "-Dfile.encoding=\"utf-8\""
  83. --java-options "-Dapple.awt.enableTemplateImages=true"
  84. --java-options "-Dsun.java2d.metal=true"
  85. --java-options "-Dcryptomator.appVersion=\"${{ steps.versions.outputs.semVerStr }}\""
  86. --java-options "-Dcryptomator.logDir=\"~/Library/Logs/Cryptomator\""
  87. --java-options "-Dcryptomator.pluginDir=\"~/Library/Application Support/Cryptomator/Plugins\""
  88. --java-options "-Dcryptomator.settingsPath=\"~/Library/Application Support/Cryptomator/settings.json\""
  89. --java-options "-Dcryptomator.ipcSocketPath=\"~/Library/Application Support/Cryptomator/ipc.socket\""
  90. --java-options "-Dcryptomator.showTrayIcon=true"
  91. --java-options "-Dcryptomator.buildNumber=\"dmg-${{ steps.versions.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: ${{ steps.versions.outputs.semVerNum }}
  102. REVISION_NO: ${{ steps.versions.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}.dmg dmg
  182. env:
  183. VERSION_NO: ${{ steps.versions.outputs.semVerNum }}
  184. - name: Install notarization credentials
  185. if: startsWith(github.ref, 'refs/tags/')
  186. run: |
  187. # create temporary keychain
  188. KEYCHAIN_PATH=$RUNNER_TEMP/notarization.keychain-db
  189. security create-keychain -p "${NOTARIZATION_TMP_KEYCHAIN_PW}" ${KEYCHAIN_PATH}
  190. security set-keychain-settings -lut 900 ${KEYCHAIN_PATH}
  191. security unlock-keychain -p "${NOTARIZATION_TMP_KEYCHAIN_PW}" ${KEYCHAIN_PATH}
  192. # import credentials from secrets
  193. sudo xcode-select -s /Applications/Xcode_13.0.app
  194. xcrun notarytool store-credentials "${NOTARIZATION_KEYCHAIN_PROFILE}" --apple-id "${NOTARIZATION_APPLE_ID}" --password "${NOTARIZATION_PW}" --team-id "${NOTARIZATION_TEAM_ID}" --keychain "${KEYCHAIN_PATH}"
  195. env:
  196. NOTARIZATION_KEYCHAIN_PROFILE: ${{ secrets.MACOS_NOTARIZATION_KEYCHAIN_PROFILE }}
  197. NOTARIZATION_APPLE_ID: ${{ secrets.MACOS_NOTARIZATION_APPLE_ID }}
  198. NOTARIZATION_PW: ${{ secrets.MACOS_NOTARIZATION_PW }}
  199. NOTARIZATION_TEAM_ID: ${{ secrets.MACOS_NOTARIZATION_TEAM_ID }}
  200. NOTARIZATION_TMP_KEYCHAIN_PW: ${{ secrets.MACOS_NOTARIZATION_TMP_KEYCHAIN_PW }}
  201. - name: Notarize .dmg
  202. if: startsWith(github.ref, 'refs/tags/')
  203. run: |
  204. KEYCHAIN_PATH=$RUNNER_TEMP/notarization.keychain-db
  205. sudo xcode-select -s /Applications/Xcode_13.0.app
  206. xcrun notarytool submit Cryptomator-*.dmg --keychain-profile "${NOTARIZATION_KEYCHAIN_PROFILE}" --keychain "${KEYCHAIN_PATH}" --wait
  207. xcrun stapler staple Cryptomator-*.dmg
  208. env:
  209. NOTARIZATION_KEYCHAIN_PROFILE: ${{ secrets.MACOS_NOTARIZATION_KEYCHAIN_PROFILE }}
  210. - name: Add possible alpha/beta tags to installer name
  211. run: mv Cryptomator-*.dmg Cryptomator-${{ steps.versions.outputs.semVerStr }}.dmg
  212. - name: Create detached GPG signature with key 615D449FE6E6A235
  213. run: |
  214. echo "${GPG_PRIVATE_KEY}" | gpg --batch --quiet --import
  215. echo "${GPG_PASSPHRASE}" | gpg --batch --quiet --passphrase-fd 0 --pinentry-mode loopback -u 615D449FE6E6A235 --detach-sign -a Cryptomator-*.dmg
  216. env:
  217. GPG_PRIVATE_KEY: ${{ secrets.RELEASES_GPG_PRIVATE_KEY }}
  218. GPG_PASSPHRASE: ${{ secrets.RELEASES_GPG_PASSPHRASE }}
  219. - name: Clean up codesign certificate
  220. if: ${{ always() }}
  221. run: security delete-keychain $RUNNER_TEMP/codesign.keychain-db
  222. continue-on-error: true
  223. - name: Clean up notarization credentials
  224. if: ${{ always() }}
  225. run: security delete-keychain $RUNNER_TEMP/notarization.keychain-db
  226. continue-on-error: true
  227. - name: Upload artifacts
  228. uses: actions/upload-artifact@v3
  229. with:
  230. name: dmg
  231. path: Cryptomator-*.dmg
  232. if-no-files-found: error
  233. - name: Publish dmg on GitHub Releases
  234. if: startsWith(github.ref, 'refs/tags/')
  235. uses: softprops/action-gh-release@v1
  236. with:
  237. fail_on_unmatched_files: true
  238. token: ${{ secrets.CRYPTOBOT_RELEASE_TOKEN }}
  239. files: |
  240. Cryptomator-*.dmg
  241. Cryptomator-*.asc