fix(ci): correct release-package destination specifier for v0.0.1 #29

Merged
gronod merged 1 commits from develop into main 2026-09-08 14:15:24 +01:00
3 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -99,7 +99,7 @@ jobs:
xcodebuild clean build \
-scheme MacMonitor \
-configuration Release \
-destination 'generic/platform=macOS,arch=x86_64' \
-destination 'platform=macOS,arch=x86_64' \
-derivedDataPath "$PWD/DerivedData" \
CODE_SIGNING_ALLOWED=NO
+1 -1
View File
@@ -132,7 +132,7 @@ Before opening any Pull Request, ensure that the project compiles cleanly for In
```bash
xcodebuild build test \
-scheme MacMonitor \
-destination 'generic/platform=macOS,arch=x86_64' \
-destination 'platform=macOS,arch=x86_64' \
CODE_SIGNING_ALLOWED=NO
```
+1 -1
View File
@@ -158,7 +158,7 @@ git checkout develop
# Build Release binary for Intel x86_64
xcodebuild build \
-scheme MacMonitor \
-destination 'generic/platform=macOS,arch=x86_64' \
-destination 'platform=macOS,arch=x86_64' \
-configuration Release \
CODE_SIGNING_ALLOWED=NO
```