fix: Improve macOS support

This commit is contained in:
LukeGus
2025-10-19 21:08:06 -05:00
parent bfd285268a
commit 5c0fed63a7
2 changed files with 7 additions and 3 deletions

View File

@@ -169,11 +169,17 @@ jobs:
echo "Imported certificates:"
security find-identity -v -p codesigning $KEYCHAIN_PATH
- name: Set version for build
if: steps.check_certs.outputs.has_certs == 'true'
run: |
npm version 1.8.${{ github.run_number }} --no-git-tag-version
echo "Version set to:"
grep '"version"' package.json
- name: Build macOS App Store Package
if: steps.check_certs.outputs.has_certs == 'true'
env:
ELECTRON_BUILDER_ALLOW_UNRESOLVED_DEPENDENCIES: true
BUILD_NUMBER: ${{ github.run_number }}
run: npm run build:mac
- name: List release directory

View File

@@ -77,8 +77,6 @@
"minimumSystemVersion": "10.15"
},
"mas": {
"bundleShortVersion": "1.8.0",
"bundleVersion": "1.8.${env.BUILD_NUMBER}",
"provisioningProfile": "build/Termix_Mac_App_Store.provisionprofile",
"entitlements": "build/entitlements.mas.plist",
"entitlementsInherit": "build/entitlements.mas.inherit.plist",