desktop release #13
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Desktop MacOS Release | |
on: | |
push: | |
tags: | |
- 'release-desktop/[0-9]+.[0-9]+.[0-9]+' | |
jobs: | |
deploy: | |
runs-on: macos-14 | |
timeout-minutes: 40 | |
permissions: | |
contents: write | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Setup environment | |
uses: ./.github/actions/setup-gradle | |
# Developer ID Application | |
- name: Import signing certificate | |
uses: apple-actions/import-codesign-certs@v3 | |
with: | |
p12-file-base64: ${{ secrets.CERTIFICATES_P12 }} | |
p12-password: ${{ secrets.CERTIFICATES_PASSWORD }} | |
- name: Create Embedded Provision Profile | |
run: | | |
echo "$EMBEDDED_PROVISION" > desktopApp/embedded.provisionprofile.b64 | |
base64 -d -i desktopApp/embedded.provisionprofile.b64 > desktopApp/embedded.provisionprofile | |
env: | |
EMBEDDED_PROVISION: ${{ secrets.EMBEDDED_PROVISION }} | |
- name: Create Runtime Provision Profile | |
run: | | |
echo "$RUNTIME_PROVISION" > desktopApp/runtime.provisionprofile.b64 | |
base64 -d -i desktopApp/runtime.provisionprofile.b64 > desktopApp/runtime.provisionprofile | |
env: | |
RUNTIME_PROVISION: ${{ secrets.RUNTIME_PROVISION }} | |
- name: Create path variables | |
id: path_variables | |
run: | | |
tag=$(git describe --tags --abbrev=0 --match "release/*") | |
version=$(echo "$tag" | sed 's/release\///') | |
name="Sync Sphere-${version}.pkg" | |
path="desktopApp/build/release/main/pkg/${name}" | |
echo "TAG=$tag" >> $GITHUB_ENV | |
echo "VERSION=$version" >> $GITHUB_ENV | |
echo "RELEASE_PATH=$path" >> $GITHUB_ENV | |
- name: Create Properties file | |
run: | | |
echo "is_release=true" >> desktopApp/src/jvmMain/resources/props.properties | |
echo "sentry_dns=$SENTRY_DNS" >> desktopApp/src/jvmMain/resources/props.properties | |
echo "version=$VERSION" >> desktopApp/src/jvmMain/resources/props.properties | |
env: | |
SENTRY_DNS: ${{ secrets.SENTRY_DNS }} | |
VERSION: ${{ env.VERSION }} | |
- name: Create PKG | |
run: ./gradlew :desktopApp:packagePkg | |
- name: Upload reports | |
if: failure() | |
uses: actions/upload-artifact@v4 | |
with: | |
name: reports | |
path: | | |
**/build/compose/logs/* | |
- name: Notarization | |
run: | | |
xcrun notarytool submit "$RELEASE_PATH" --apple-id $APPLE_ID_NOTARIZATION --password $NOTARIZATION_PWD --team-id $APPSTORE_TEAM_ID --wait | |
xcrun stapler staple "$RELEASE_PATH" | |
env: | |
APPLE_ID_NOTARIZATION: ${{ secrets.APPLE_ID_NOTARIZATION }} | |
APPSTORE_TEAM_ID: ${{ secrets.APPSTORE_TEAM_ID }} | |
NOTARIZATION_PWD: ${{ secrets.NOTARIZATION_PWD }} | |
RELEASE_PATH: ${{ env.RELEASE_PATH }} | |
- name: Upload binaries to release | |
uses: svenstaro/upload-release-action@v2 | |
with: | |
repo_token: ${{ secrets.GITHUB_TOKEN }} | |
file: ${{ env.RELEASE_PATH }} | |
tag: ${{ env.TAG }} | |
overwrite: true | |
draft: true | |
body: "Release ${{ env.VERSION }}" | |
- uses: Apple-Actions/upload-testflight-build@v1 | |
with: | |
app-type: 'osx' | |
app-path: ${{ env.RELEASE_PATH }} | |
issuer-id: ${{ secrets.APP_STORE_CONNECT_API_KEY_ISSUER_ID }} | |
api-key-id: ${{ secrets.APP_STORE_CONNECT_API_KEY_KEY_ID }} | |
api-private-key: ${{ secrets.APP_STORE_CONNECT_API_KEY_KEY }} |