Im trying to setup shorebird release with fastlane but im doing something wrong since its not working, also the documentation doesn't help.
Fastfile
lane :build_ios do
api_key = app_store_connect_api_key(
key_id: "",
issuer_id: "",
key_content: ENV["SOME_KEY"],
in_house: false,
)
create_keychain(
name: "fastlane.keychain",
password: ENV["FASTLANE_PASSWORD"],
default_keychain: true,
unlock: true,
timeout: 3600,
lock_when_sleeps: false
)
match(
type: 'appstore',
app_identifier: ["app.example"],
api_key: api_key,
git_branch: "somebranch",
clone_branch_directly: true,
keychain_name: "fastlane.keychain",
keychain_password: ENV["FASTLANE_PASSWORD"],
readonly: true,
)
build_app(workspace: "Runner.xcworkspace", scheme: "dev") # WORKS
shorebird_release(platform: "ios", args:"--flavor dev --target ./lib/main_dev.dart") # Does not work