Lukasz Grabowski

Results 24 comments of Lukasz Grabowski

> Would `Spaceship::ConnectAPI::Profile` work with Enterprise (non App Store) accounts too (using username+password login) @joshdholtz ? It will also work with Enterprise account. You can give it a try in...

It looks like you're right, it's not a bool flag, it's a string parameter. `git status` docs should be helpful to understand how to use it https://github.com/fastlane/fastlane/blob/e215bdc787aa9e14fcf24b1fabc168a3182f4f89/fastlane/lib/fastlane/actions/ensure_git_status_clean.rb#L8-L15

Hi @ainame @rogerluan, I spent "a moment" to figure out how I ran it locally after opening shell `pipenv shell` and installing dependencies with `pipenv install` last year 😄. I...

If you use `match`, you could read about `nuke` in the docs https://docs.fastlane.tools/actions/match/#nuke. It allows for revoking certificates. To recreate certificate you need to call run `match` one more time....

It sounds like you have wrong profile set in code signing settings in Xcode project. You can update it in Xcode to use the recently create by match or you...

Hi, I spent time investigating what could be the cause of the issue from logs - missing `app_info` that causes fastlane crash when you're trying to download metadata. I checked...

The majority of actions has documentation generated based on contents of actions implementation files in ruby, but sync_code_signing has a custom documentation in file: https://github.com/fastlane/fastlane/blob/master/fastlane/lib/fastlane/actions/docs/sync_code_signing.md Docs update is started on...

Thank you for your contribution :)) 💪 The code looks good to me 🔥, I'll add a comment with an idea for a test in spec.

Hi, there is a PR https://github.com/fastlane/fastlane/pull/21901 with an implementation for request to get app availabilities, please take a look at the description there. For now it's left as a draft...

Hi, I am not sure it that's currently possible to get the exit status of scan command, but you could take a look at scan/lib/scan/runner, fastlane_core/lib/fastlane_core/command_executor. If it's not available,...