Skip to content

Commit

Permalink
Fix iOS build (#306)
Browse files Browse the repository at this point in the history
* Change provisioning profile for iOS

* Update runner image to MacOS 15

* Replace pip with pipx
  • Loading branch information
7h30n3 authored Jan 8, 2025
1 parent fdf49f6 commit 744150c
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/actions/environment_setup/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ runs:
steps:
- name: Install yq
shell: bash
run: pip3 install yq
run: pipx install yq

- name: Read Flutter version from pubspec.yaml
id: flutterVersion
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build_app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ jobs:

build_ios:
name: Build for iOS
runs-on: macos-13
runs-on: macos-15

env:
BUILD_CERTIFICATE_BASE64: ${{ secrets.APPLE_DISTRIBUTION_CERT_BASE64 }}
Expand Down
6 changes: 3 additions & 3 deletions ios/Runner.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -384,7 +384,7 @@
PRODUCT_BUNDLE_IDENTIFIER = "de.tu-chemnitz.etit.sse.openstop";
PRODUCT_NAME = "$(TARGET_NAME)";
PROVISIONING_PROFILE_SPECIFIER = "";
"PROVISIONING_PROFILE_SPECIFIER[sdk=iphoneos*]" = "OpenStop - Contribution";
"PROVISIONING_PROFILE_SPECIFIER[sdk=iphoneos*]" = "OpenStop - Distribution";
SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h";
SWIFT_VERSION = 5.0;
VERSIONING_SYSTEM = "apple-generic";
Expand Down Expand Up @@ -525,7 +525,7 @@
PRODUCT_BUNDLE_IDENTIFIER = "de.tu-chemnitz.etit.sse.openstop";
PRODUCT_NAME = "$(TARGET_NAME)";
PROVISIONING_PROFILE_SPECIFIER = "";
"PROVISIONING_PROFILE_SPECIFIER[sdk=iphoneos*]" = "OpenStop - Contribution";
"PROVISIONING_PROFILE_SPECIFIER[sdk=iphoneos*]" = "OpenStop - Distribution";
SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h";
SWIFT_OPTIMIZATION_LEVEL = "-Onone";
SWIFT_VERSION = 5.0;
Expand Down Expand Up @@ -559,7 +559,7 @@
PRODUCT_BUNDLE_IDENTIFIER = "de.tu-chemnitz.etit.sse.openstop";
PRODUCT_NAME = "$(TARGET_NAME)";
PROVISIONING_PROFILE_SPECIFIER = "";
"PROVISIONING_PROFILE_SPECIFIER[sdk=iphoneos*]" = "OpenStop - Contribution";
"PROVISIONING_PROFILE_SPECIFIER[sdk=iphoneos*]" = "OpenStop - Distribution";
SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h";
SWIFT_VERSION = 5.0;
VERSIONING_SYSTEM = "apple-generic";
Expand Down

0 comments on commit 744150c

Please sign in to comment.