Skip to content

Commit 4c61070

Browse files
fix: xcodeproj version
1 parent 141cafc commit 4c61070

2 files changed

Lines changed: 5 additions & 4 deletions

File tree

.github/workflows/release-desktop-publish.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ jobs:
108108

109109
- name: Install Pods
110110
working-directory: apps/desktop/macos
111-
run: bundle exec pod install
111+
run: bundle exec pod install --verbose
112112

113113
- name: Import signing certificate
114114
env:
@@ -139,15 +139,16 @@ jobs:
139139
-destination 'generic/platform=macOS' \
140140
CODE_SIGN_STYLE=Manual \
141141
DEVELOPMENT_TEAM="${{ secrets.APPLE_TEAM_ID }}" \
142-
archive | xcpretty && exit ${PIPESTATUS[0]}
142+
CODE_SIGN_IDENTITY="Developer ID Application" \
143+
archive
143144
144145
- name: xcodebuild exportArchive
145146
run: |
146147
xcodebuild \
147148
-exportArchive \
148149
-archivePath "$ARCHIVE_PATH" \
149150
-exportPath "$EXPORT_PATH" \
150-
-exportOptionsPlist "$EXPORT_OPTIONS" | xcpretty && exit ${PIPESTATUS[0]}
151+
-exportOptionsPlist "$EXPORT_OPTIONS"
151152
152153
- name: Notarize
153154
env:

apps/desktop/Gemfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,5 @@ ruby ">= 2.6.10"
66
# Exclude problematic versions of cocoapods and activesupport that causes build failures.
77
gem 'cocoapods', '>= 1.13', '!= 1.15.0', '!= 1.15.1'
88
gem 'activesupport', '>= 6.1.7.5', '!= 7.1.0'
9-
gem 'xcodeproj', '< 1.26.0'
9+
gem 'xcodeproj', '>= 1.27.0'
1010
gem 'concurrent-ruby', '< 1.3.4'

0 commit comments

Comments
 (0)