Skip to content

Commit

Permalink
build: add arch suffix to installer name
Browse files Browse the repository at this point in the history
  • Loading branch information
falkoschumann committed Jul 31, 2023
1 parent 155b861 commit d7f34ec
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
```
2 changes: 1 addition & 1 deletion LICENSE.txt
Original file line number Diff line number Diff line change
@@ -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
Expand Down
1 change: 1 addition & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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'
}
}
Expand Down

0 comments on commit d7f34ec

Please sign in to comment.