mac-dmg.yml 11 KB

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