From d7f34ec7909b2f72ce9fe92170bb9e4eac70aa25 Mon Sep 17 00:00:00 2001 From: Falko Schumann Date: Mon, 31 Jul 2023 21:12:37 +0200 Subject: [PATCH] build: add arch suffix to installer name --- CONTRIBUTING.md | 2 +- LICENSE.txt | 2 +- build.gradle | 1 + 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 1b420fe..9a5dd8b 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -21,5 +21,5 @@ xcrun notarytool submit \ --apple-id $MAC_SIGNING_USERNAME \ --password $MAC_SIGNING_PASSWORD \ --wait \ - activity-sampling-1.0.0-m1.dmg + activity-sampling-m1-1.0.0.dmg ``` diff --git a/LICENSE.txt b/LICENSE.txt index 08db831..6f9d7d0 100644 --- a/LICENSE.txt +++ b/LICENSE.txt @@ -1,6 +1,6 @@ MIT License -Copyright (c) 2022 Falko Schumann +Copyright (c) 2023 Falko Schumann Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/build.gradle b/build.gradle index bcb8e49..10ef463 100644 --- a/build.gradle +++ b/build.gradle @@ -126,6 +126,7 @@ if (Os.isFamily(Os.FAMILY_MAC)) { '--mac-signing-key-user-name', 'Falko Schumann (QC6EN37P56)', '--resource-dir', "$projectDir/src/main/macos", ] + installerName = project.name + (Os.isArch("aarch64") ? "-m1" : "-intel") installerType = 'dmg' } }