|
@@ -13,9 +13,15 @@ env:
|
|
|
JAVA_VERSION: 19
|
|
|
|
|
|
jobs:
|
|
|
+ get-version:
|
|
|
+ uses: ./.github/workflows/get-version.yml
|
|
|
+ with:
|
|
|
+ version: ${{ github.event.inputs.version }}
|
|
|
+
|
|
|
build:
|
|
|
name: Build Cryptomator.app for ${{ matrix.output-suffix }}
|
|
|
runs-on: ${{ matrix.os }}
|
|
|
+ needs: [get-version]
|
|
|
strategy:
|
|
|
fail-fast: false
|
|
|
matrix:
|
|
@@ -30,8 +36,6 @@ jobs:
|
|
|
xcode-path: '/Applications/Xcode_13.2.1.app'
|
|
|
steps:
|
|
|
- uses: actions/checkout@v3
|
|
|
- with:
|
|
|
- fetch-depth: 0
|
|
|
- name: Setup Java
|
|
|
uses: actions/setup-java@v3
|
|
|
with:
|
|
@@ -39,27 +43,8 @@ jobs:
|
|
|
java-version: ${{ env.JAVA_VERSION }}
|
|
|
architecture: ${{ matrix.architecture }}
|
|
|
cache: 'maven'
|
|
|
- - id: versions
|
|
|
- name: Apply version information
|
|
|
- run: |
|
|
|
- if [[ $GITHUB_REF =~ refs/tags/[0-9]+\.[0-9]+\.[0-9]+.* ]]; then
|
|
|
- SEM_VER_STR=${GITHUB_REF##*/}
|
|
|
- mvn versions:set -DnewVersion=${SEM_VER_STR}
|
|
|
- elif [[ "${{ github.event.inputs.version }}" =~ [0-9]+\.[0-9]+\.[0-9]+.* ]]; then
|
|
|
- SEM_VER_STR="${{ github.event.inputs.version }}"
|
|
|
- mvn versions:set -DnewVersion=${SEM_VER_STR}
|
|
|
- else
|
|
|
- SEM_VER_STR=`mvn help:evaluate -Dexpression=project.version -q -DforceStdout`
|
|
|
- fi
|
|
|
- SEM_VER_NUM=`echo ${SEM_VER_STR} | sed -E 's/([0-9]+\.[0-9]+\.[0-9]+).*/\1/'`
|
|
|
- REVCOUNT=`git rev-list --count HEAD`
|
|
|
- echo "::set-output name=semVerStr::${SEM_VER_STR}"
|
|
|
- echo "::set-output name=semVerNum::${SEM_VER_NUM}"
|
|
|
- echo "::set-output name=revNum::${REVCOUNT}"
|
|
|
- - name: Validate Version
|
|
|
- uses: skymatic/semver-validation-action@v1
|
|
|
- with:
|
|
|
- version: ${{ steps.versions.outputs.semVerStr }}
|
|
|
+ - name: Set version
|
|
|
+ run : mvn versions:set -DnewVersion=${{ needs.get-version.outputs.semVerStr }}
|
|
|
- name: Run maven
|
|
|
run: mvn -B clean package -Pdependency-check,mac -DskipTests
|
|
|
- name: Patch target dir
|
|
@@ -92,13 +77,13 @@ jobs:
|
|
|
--name Cryptomator
|
|
|
--vendor "Skymatic GmbH"
|
|
|
--copyright "(C) 2016 - 2022 Skymatic GmbH"
|
|
|
- --app-version "${{ steps.versions.outputs.semVerNum }}"
|
|
|
+ --app-version "${{ needs.get-version.outputs.semVerNum }}
|
|
|
--java-options "-Xss5m"
|
|
|
--java-options "-Xmx256m"
|
|
|
--java-options "-Dfile.encoding=\"utf-8\""
|
|
|
--java-options "-Dapple.awt.enableTemplateImages=true"
|
|
|
--java-options "-Dsun.java2d.metal=true"
|
|
|
- --java-options "-Dcryptomator.appVersion=\"${{ steps.versions.outputs.semVerStr }}\""
|
|
|
+ --java-options "-Dcryptomator.appVersion=\"${{ needs.get-version.outputs.semVerStr }}\""
|
|
|
--java-options "-Dcryptomator.logDir=\"~/Library/Logs/Cryptomator\""
|
|
|
--java-options "-Dcryptomator.pluginDir=\"~/Library/Application Support/Cryptomator/Plugins\""
|
|
|
--java-options "-Dcryptomator.settingsPath=\"~/Library/Application Support/Cryptomator/settings.json\""
|
|
@@ -106,7 +91,7 @@ jobs:
|
|
|
--java-options "-Dcryptomator.ipcSocketPath=\"~/Library/Application Support/Cryptomator/ipc.socket\""
|
|
|
--java-options "-Dcryptomator.integrationsMac.keychainServiceName=\"Cryptomator\""
|
|
|
--java-options "-Dcryptomator.showTrayIcon=true"
|
|
|
- --java-options "-Dcryptomator.buildNumber=\"dmg-${{ steps.versions.outputs.revNum }}\""
|
|
|
+ --java-options "-Dcryptomator.buildNumber=\"dmg-${{ needs.get-version.outputs.revNum }}\""
|
|
|
--mac-package-identifier org.cryptomator
|
|
|
--resource-dir dist/mac/resources
|
|
|
- name: Patch Cryptomator.app
|
|
@@ -116,8 +101,8 @@ jobs:
|
|
|
sed -i '' "s|###BUNDLE_SHORT_VERSION_STRING###|${VERSION_NO}|g" Cryptomator.app/Contents/Info.plist
|
|
|
sed -i '' "s|###BUNDLE_VERSION###|${REVISION_NO}|g" Cryptomator.app/Contents/Info.plist
|
|
|
env:
|
|
|
- VERSION_NO: ${{ steps.versions.outputs.semVerNum }}
|
|
|
- REVISION_NO: ${{ steps.versions.outputs.revNum }}
|
|
|
+ VERSION_NO: ${{ needs.get-version.outputs.semVerNum }}
|
|
|
+ REVISION_NO: ${{ needs.get-version.outputs.revNum }}
|
|
|
- name: Generate license for dmg
|
|
|
run: >
|
|
|
mvn -B license:add-third-party
|
|
@@ -201,7 +186,7 @@ jobs:
|
|
|
--icon ".VolumeIcon.icns" 512 758
|
|
|
Cryptomator-${VERSION_NO}-${{ matrix.output-suffix }}.dmg dmg
|
|
|
env:
|
|
|
- VERSION_NO: ${{ steps.versions.outputs.semVerNum }}
|
|
|
+ VERSION_NO: ${{ needs.get-version.outputs.semVerNum }}
|
|
|
- name: Notarize .dmg
|
|
|
if: startsWith(github.ref, 'refs/tags/')
|
|
|
uses: cocoalibs/xcode-notarization-action@v1
|
|
@@ -212,7 +197,7 @@ jobs:
|
|
|
team-id: ${{ secrets.MACOS_NOTARIZATION_TEAM_ID }}
|
|
|
xcode-path: ${{ matrix.xcode-path }}
|
|
|
- name: Add possible alpha/beta tags to installer name
|
|
|
- run: mv Cryptomator-*.dmg Cryptomator-${{ steps.versions.outputs.semVerStr }}-${{ matrix.output-suffix }}.dmg
|
|
|
+ run: mv Cryptomator-*.dmg Cryptomator-${{ needs.get-version.outputs.semVerStr }}-${{ matrix.output-suffix }}.dmg
|
|
|
- name: Create detached GPG signature with key 615D449FE6E6A235
|
|
|
run: |
|
|
|
echo "${GPG_PRIVATE_KEY}" | gpg --batch --quiet --import
|