Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: add flag for changing output file name #3

Open
1 task
qu0cquyen opened this issue Nov 11, 2024 · 1 comment
Open
1 task

feat: add flag for changing output file name #3

qu0cquyen opened this issue Nov 11, 2024 · 1 comment

Comments

@qu0cquyen
Copy link

Description

 build_ios_app(
                clean: true,
                workspace: "ios/Runner.xcworkspace",
                export_method: "app-store",
                output_directory: "build/ios/ipa",
                output_name: "app.ipa",
                scheme: "Release"
)

Something like build_ios_app fastlane plugin where we can have output_name param (or flag).

Requirements

  • param which can give us a option to change output file name.
@bryanoltman bryanoltman transferred this issue from shorebirdtech/shorebird Nov 12, 2024
@bryanoltman
Copy link
Contributor

From the fastlane docs, it looks like this maps to an xcodebuild argument named exportPath:

xcodebuild -exportArchive \
           -exportFormat ipa \
           -archivePath "build/MyApp.xcarchive" \
           -exportPath "build/MyApp.ipa" \
           -exportProvisioningProfile "ProvisioningProfileName"

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants