Skip to content

Commit 13a6220

Browse files
authored
Update expired provisioning profile etc. (#123)
Updates to expired provisioning profile
1 parent f8a725f commit 13a6220

File tree

3 files changed

+5
-6
lines changed

3 files changed

+5
-6
lines changed

.github/workflows/build-release.yaml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -105,14 +105,13 @@ jobs:
105105
106106
- name: Build archive
107107
run: |
108-
set -o pipefail
109108
mkdir -p ~/build
110-
xcodebuild clean archive -scheme "Tree Tracker" -project "Tree Tracker.xcodeproj" -sdk iphoneos -configuration Release -archivePath ~/build/Tree\ Tracker.xcarchive | xcpretty
109+
xcodebuild clean archive -scheme "Tree Tracker" -project "Tree Tracker.xcodeproj" -destination "generic/platform=iOS" -allowProvisioningUpdates -sdk iphoneos -configuration Release -archivePath ~/build/Tree\ Tracker.xcarchive
111110
112111
- name: Export .ipa
113112
run: |
114113
set -o pipefail
115-
xcodebuild -archivePath ~/build/Tree\ Tracker.xcarchive -exportOptionsPlist $GITHUB_WORKSPACE/Tree\ Tracker/ExportOptions.plist -exportPath ~/build -allowProvisioningUpdates -exportArchive | xcpretty
114+
xcodebuild -archivePath ~/build/Tree\ Tracker.xcarchive -exportOptionsPlist $GITHUB_WORKSPACE/Tree\ Tracker/ExportOptions.plist -exportPath ~/build -allowProvisioningUpdates -exportArchive
116115
117116
- name: Publish
118117
if: ${{ success() && github.ref_name == 'main' && github.event_name != 'pull_request' }}

Tree Tracker.xcodeproj/project.pbxproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1085,7 +1085,7 @@
10851085
PRODUCT_BUNDLE_IDENTIFIER = "com.protect.earth.Tree-Tracker";
10861086
PRODUCT_NAME = "$(TARGET_NAME)";
10871087
PROVISIONING_PROFILE_SPECIFIER = "";
1088-
"PROVISIONING_PROFILE_SPECIFIER[sdk=iphoneos*]" = "iOS AppStore Profile 07-Mar-2023";
1088+
"PROVISIONING_PROFILE_SPECIFIER[sdk=iphoneos*]" = "App Store Distribution Profile 06-July-2025";
10891089
SWIFT_VERSION = 5.0;
10901090
TARGETED_DEVICE_FAMILY = "1,2";
10911091
VERSIONING_SYSTEM = "apple-generic";
@@ -1113,7 +1113,7 @@
11131113
PRODUCT_BUNDLE_IDENTIFIER = "com.protect.earth.Tree-Tracker";
11141114
PRODUCT_NAME = "$(TARGET_NAME)";
11151115
PROVISIONING_PROFILE_SPECIFIER = "";
1116-
"PROVISIONING_PROFILE_SPECIFIER[sdk=iphoneos*]" = "iOS AppStore Profile 07-Mar-2023";
1116+
"PROVISIONING_PROFILE_SPECIFIER[sdk=iphoneos*]" = "App Store Distribution Profile 06-July-2025";
11171117
SWIFT_VERSION = 5.0;
11181118
TARGETED_DEVICE_FAMILY = "1,2";
11191119
VERSIONING_SYSTEM = "apple-generic";

Tree Tracker/ExportOptions.plist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<key>provisioningProfiles</key>
88
<dict>
99
<key>com.protect.earth.Tree-Tracker</key>
10-
<string>iOS AppStore Profile 07-Mar-2023</string>
10+
<string>App Store Distribution Profile 06-July-2025</string>
1111
</dict>
1212
<key>method</key>
1313
<string>app-store</string>

0 commit comments

Comments
 (0)