mac-dmg.yml 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232
  1. name: Build macOS .dmg
  2. on:
  3. release:
  4. types: [published]
  5. workflow_dispatch:
  6. env:
  7. JAVA_VERSION: 17
  8. jobs:
  9. build:
  10. name: Build Cryptomator.app
  11. runs-on: macos-11
  12. steps:
  13. - uses: actions/checkout@v2
  14. with:
  15. fetch-depth: 0
  16. - name: Setup Java
  17. uses: actions/setup-java@v2
  18. with:
  19. distribution: 'temurin'
  20. java-version: ${{ env.JAVA_VERSION }}
  21. cache: 'maven'
  22. - id: versions
  23. name: Apply version information
  24. run: |
  25. if [[ $GITHUB_REF =~ refs/tags/[0-9]+\.[0-9]+\.[0-9]+.* ]]; then
  26. SEM_VER_STR=${GITHUB_REF##*/}
  27. mvn versions:set -DnewVersion=${SEM_VER_STR}
  28. else
  29. SEM_VER_STR=`mvn help:evaluate -Dexpression=project.version -q -DforceStdout`
  30. fi
  31. SEM_VER_NUM=`echo ${SEM_VER_STR} | sed -E 's/([0-9]+\.[0-9]+\.[0-9]+).*/\1/'`
  32. REVCOUNT=`git rev-list --count HEAD`
  33. echo "::set-output name=semVerStr::${SEM_VER_STR}"
  34. echo "::set-output name=semVerNum::${SEM_VER_NUM}"
  35. echo "::set-output name=revNum::${REVCOUNT}"
  36. - name: Validate Version
  37. uses: skymatic/semver-validation-action@v1
  38. with:
  39. version: ${{ steps.versions.outputs.semVerStr }}
  40. - name: Run maven
  41. run: mvn -B clean package -Pdependency-check,mac -DskipTests
  42. - name: Patch target dir
  43. run: |
  44. cp LICENSE.txt target
  45. cp dist/mac/launcher.sh target
  46. cp target/cryptomator-*.jar target/mods
  47. - name: Run jlink
  48. run: >
  49. ${JAVA_HOME}/bin/jlink
  50. --verbose
  51. --output runtime
  52. --module-path "${JAVA_HOME}/jmods"
  53. --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
  54. --strip-native-commands
  55. --no-header-files
  56. --no-man-pages
  57. --strip-debug
  58. --compress=1
  59. - name: Run jpackage
  60. run: >
  61. ${JAVA_HOME}/bin/jpackage
  62. --verbose
  63. --type app-image
  64. --runtime-image runtime
  65. --input target/libs
  66. --module-path target/mods
  67. --module org.cryptomator.desktop/org.cryptomator.launcher.Cryptomator
  68. --dest appdir
  69. --name Cryptomator
  70. --vendor "Skymatic GmbH"
  71. --copyright "(C) 2016 - 2022 Skymatic GmbH"
  72. --app-version "${{ steps.versions.outputs.semVerNum }}"
  73. --java-options "-Xss5m"
  74. --java-options "-Xmx256m"
  75. --java-options "-Dcryptomator.appVersion=\"${{ steps.versions.outputs.semVerStr }}\""
  76. --java-options "-Dfile.encoding=\"utf-8\""
  77. --java-options "-Dapple.awt.enableTemplateImages=true"
  78. --java-options "-Dcryptomator.logDir=\"~/Library/Logs/Cryptomator\""
  79. --java-options "-Dcryptomator.pluginDir=\"~/Library/Application Support/Cryptomator/Plugins\""
  80. --java-options "-Dcryptomator.settingsPath=\"~/Library/Application Support/Cryptomator/settings.json\""
  81. --java-options "-Dcryptomator.ipcSocketPath=\"~/Library/Application Support/Cryptomator/ipc.socket\""
  82. --java-options "-Dcryptomator.showTrayIcon=true"
  83. --java-options "-Dcryptomator.buildNumber=\"dmg-${{ steps.versions.outputs.revNum }}\""
  84. --mac-package-identifier org.cryptomator
  85. --resource-dir dist/mac/resources
  86. - name: Patch Cryptomator.app
  87. run: |
  88. mv appdir/Cryptomator.app Cryptomator.app
  89. mv dist/mac/resources/Cryptomator-Vault.icns Cryptomator.app/Contents/Resources/
  90. sed -i '' "s|###BUNDLE_SHORT_VERSION_STRING###|${VERSION_NO}|g" Cryptomator.app/Contents/Info.plist
  91. sed -i '' "s|###BUNDLE_VERSION###|${REVISION_NO}|g" Cryptomator.app/Contents/Info.plist
  92. env:
  93. VERSION_NO: ${{ steps.versions.outputs.semVerNum }}
  94. REVISION_NO: ${{ steps.versions.outputs.revNum }}
  95. - name: Install codesign certificate
  96. run: |
  97. # create variables
  98. CERTIFICATE_PATH=$RUNNER_TEMP/codesign.p12
  99. KEYCHAIN_PATH=$RUNNER_TEMP/codesign.keychain-db
  100. # import certificate and provisioning profile from secrets
  101. echo -n "$CODESIGN_P12_BASE64" | base64 --decode --output $CERTIFICATE_PATH
  102. # create temporary keychain
  103. security create-keychain -p "$CODESIGN_TMP_KEYCHAIN_PW" $KEYCHAIN_PATH
  104. security set-keychain-settings -lut 900 $KEYCHAIN_PATH
  105. security unlock-keychain -p "$CODESIGN_TMP_KEYCHAIN_PW" $KEYCHAIN_PATH
  106. # import certificate to keychain
  107. security import $CERTIFICATE_PATH -P "$CODESIGN_P12_PW" -A -t cert -f pkcs12 -k $KEYCHAIN_PATH
  108. security list-keychain -d user -s $KEYCHAIN_PATH
  109. env:
  110. CODESIGN_P12_BASE64: ${{ secrets.MACOS_CODESIGN_P12_BASE64 }}
  111. CODESIGN_P12_PW: ${{ secrets.MACOS_CODESIGN_P12_PW }}
  112. CODESIGN_TMP_KEYCHAIN_PW: ${{ secrets.MACOS_CODESIGN_TMP_KEYCHAIN_PW }}
  113. - name: Codesign
  114. run: |
  115. find Cryptomator.app/Contents/runtime/Contents/MacOS -name '*.dylib' -exec codesign --force -s ${CODESIGN_IDENTITY} {} \;
  116. for JAR_PATH in `find Cryptomator.app -name "*.jar"`; do
  117. if [[ `unzip -l ${JAR_PATH} | grep '.dylib\|.jnilib'` ]]; then
  118. JAR_FILENAME=$(basename ${JAR_PATH})
  119. OUTPUT_PATH=${JAR_PATH%.*}
  120. echo "Codesigning libs in ${JAR_FILENAME}..."
  121. unzip -q ${JAR_PATH} -d ${OUTPUT_PATH}
  122. find ${OUTPUT_PATH} -name '*.dylib' -exec codesign --force -s ${CODESIGN_IDENTITY} {} \;
  123. find ${OUTPUT_PATH} -name '*.jnilib' -exec codesign --force -s ${CODESIGN_IDENTITY} {} \;
  124. rm ${JAR_PATH}
  125. pushd ${OUTPUT_PATH} > /dev/null
  126. zip -qr ../${JAR_FILENAME} *
  127. popd > /dev/null
  128. rm -r ${OUTPUT_PATH}
  129. fi
  130. done
  131. echo "Codesigning Cryptomator.app..."
  132. codesign --force --deep --entitlements dist/mac/Cryptomator.entitlements -o runtime -s ${CODESIGN_IDENTITY} Cryptomator.app
  133. env:
  134. CODESIGN_IDENTITY: ${{ secrets.MACOS_CODESIGN_IDENTITY }}
  135. - name: Prepare .dmg contents
  136. run: |
  137. mkdir dmg
  138. mv Cryptomator.app dmg
  139. cp dist/mac/dmg/resources/macFUSE.webloc dmg
  140. ls -l dmg
  141. - name: Install create-dmg
  142. run: |
  143. brew install create-dmg
  144. create-dmg --help
  145. - name: Create .dmg
  146. run: >
  147. create-dmg
  148. --volname Cryptomator
  149. --volicon "dist/mac/dmg/resources/Cryptomator-Volume.icns"
  150. --background "dist/mac/dmg/resources/Cryptomator-background.tiff"
  151. --window-pos 400 100
  152. --window-size 640 694
  153. --icon-size 128
  154. --icon "Cryptomator.app" 128 245
  155. --hide-extension "Cryptomator.app"
  156. --icon "macFUSE.webloc" 320 501
  157. --hide-extension "macFUSE.webloc"
  158. --app-drop-link 512 245
  159. --eula "dist/mac/dmg/resources/license.rtf"
  160. --icon ".background" 128 758
  161. --icon ".fseventsd" 320 758
  162. --icon ".VolumeIcon.icns" 512 758
  163. Cryptomator-${VERSION_NO}.dmg dmg
  164. env:
  165. VERSION_NO: ${{ steps.versions.outputs.semVerNum }}
  166. - name: Install notarization credentials
  167. if: startsWith(github.ref, 'refs/tags/')
  168. run: |
  169. # create temporary keychain
  170. KEYCHAIN_PATH=$RUNNER_TEMP/notarization.keychain-db
  171. security create-keychain -p "${NOTARIZATION_TMP_KEYCHAIN_PW}" ${KEYCHAIN_PATH}
  172. security set-keychain-settings -lut 900 ${KEYCHAIN_PATH}
  173. security unlock-keychain -p "${NOTARIZATION_TMP_KEYCHAIN_PW}" ${KEYCHAIN_PATH}
  174. # import credentials from secrets
  175. sudo xcode-select -s /Applications/Xcode_13.0.app
  176. xcrun notarytool store-credentials "${NOTARIZATION_KEYCHAIN_PROFILE}" --apple-id "${NOTARIZATION_APPLE_ID}" --password "${NOTARIZATION_PW}" --team-id "${NOTARIZATION_TEAM_ID}" --keychain "${KEYCHAIN_PATH}"
  177. env:
  178. NOTARIZATION_KEYCHAIN_PROFILE: ${{ secrets.MACOS_NOTARIZATION_KEYCHAIN_PROFILE }}
  179. NOTARIZATION_APPLE_ID: ${{ secrets.MACOS_NOTARIZATION_APPLE_ID }}
  180. NOTARIZATION_PW: ${{ secrets.MACOS_NOTARIZATION_PW }}
  181. NOTARIZATION_TEAM_ID: ${{ secrets.MACOS_NOTARIZATION_TEAM_ID }}
  182. NOTARIZATION_TMP_KEYCHAIN_PW: ${{ secrets.MACOS_NOTARIZATION_TMP_KEYCHAIN_PW }}
  183. - name: Notarize .dmg
  184. if: startsWith(github.ref, 'refs/tags/')
  185. run: |
  186. KEYCHAIN_PATH=$RUNNER_TEMP/notarization.keychain-db
  187. sudo xcode-select -s /Applications/Xcode_13.0.app
  188. xcrun notarytool submit Cryptomator-*.dmg --keychain-profile "${NOTARIZATION_KEYCHAIN_PROFILE}" --keychain "${KEYCHAIN_PATH}" --wait
  189. xcrun stapler staple Cryptomator-*.dmg
  190. env:
  191. NOTARIZATION_KEYCHAIN_PROFILE: ${{ secrets.MACOS_NOTARIZATION_KEYCHAIN_PROFILE }}
  192. - name: Add possible alpha/beta tags to installer name
  193. run: mv Cryptomator-*.dmg Cryptomator-${{ steps.versions.outputs.semVerStr }}.dmg
  194. - name: Create detached GPG signature with key 615D449FE6E6A235
  195. run: |
  196. echo "${GPG_PRIVATE_KEY}" | gpg --batch --quiet --import
  197. echo "${GPG_PASSPHRASE}" | gpg --batch --quiet --passphrase-fd 0 --pinentry-mode loopback -u 615D449FE6E6A235 --detach-sign -a Cryptomator-*.dmg
  198. env:
  199. GPG_PRIVATE_KEY: ${{ secrets.RELEASES_GPG_PRIVATE_KEY }}
  200. GPG_PASSPHRASE: ${{ secrets.RELEASES_GPG_PASSPHRASE }}
  201. - name: Clean up codesign certificate
  202. if: ${{ always() }}
  203. run: security delete-keychain $RUNNER_TEMP/codesign.keychain-db
  204. continue-on-error: true
  205. - name: Clean up notarization credentials
  206. if: ${{ always() }}
  207. run: security delete-keychain $RUNNER_TEMP/notarization.keychain-db
  208. continue-on-error: true
  209. - name: Upload artifacts
  210. uses: actions/upload-artifact@v3
  211. with:
  212. name: dmg
  213. path: Cryptomator-*.dmg
  214. if-no-files-found: error
  215. - name: Publish dmg on GitHub Releases
  216. if: startsWith(github.ref, 'refs/tags/')
  217. uses: softprops/action-gh-release@v1
  218. with:
  219. fail_on_unmatched_files: true
  220. token: ${{ secrets.CRYPTOBOT_RELEASE_TOKEN }}
  221. files: |
  222. *.dmg
  223. *.asc