Skip to content

Commit

Permalink
Update devices lane
Browse files Browse the repository at this point in the history
  • Loading branch information
flaviuvsp committed Jan 30, 2025
1 parent 4a7ec65 commit e1f19e4
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/update_devices.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Deploy Firebase Beta
name: Update Devices

on:
workflow_dispatch:
Expand Down
19 changes: 10 additions & 9 deletions fastlane/Fastfile
Original file line number Diff line number Diff line change
Expand Up @@ -175,23 +175,24 @@ platform :ios do
)

# resolve the provisioning profiles and certs from private repo
match(type: "appstore",
match(type: "adhoc",
readonly: false,
app_identifier: "org.permanent.PermanentArchive",
app_identifier: "org.permanent.permanent.staging",
git_url: "https://oauth2:#{ENV['FASTLANE_MATCH_TOKEN']}@github.com/PermanentOrg/permanent-ios-certs.git",
keychain_password: ""
force_for_new_devices: true,
verbose: true
)
match(type: "appstore",
match(type: "adhoc",
readonly: false,
app_identifier: "org.permanent.PermanentArchive.PushExtension",
app_identifier: "org.permanent.permanent.staging.PushExtension",
git_url: "https://oauth2:#{ENV['FASTLANE_MATCH_TOKEN']}@github.com/PermanentOrg/permanent-ios-certs.git",
keychain_password: ""
force_for_new_devices: true
)
match(type: "appstore",
match(type: "adhoc",
readonly: false,
app_identifier: "org.permanent.PermanentArchive.ShareExtension",
app_identifier: "org.permanent.permanent.staging.ShareExtension",
git_url: "https://oauth2:#{ENV['FASTLANE_MATCH_TOKEN']}@github.com/PermanentOrg/permanent-ios-certs.git",
keychain_password: ""
force_for_new_devices: true
)
end

Expand Down

0 comments on commit e1f19e4

Please sign in to comment.