Skip to content

Commit

Permalink
add fastlane
Browse files Browse the repository at this point in the history
  • Loading branch information
tyler-whitman committed Oct 28, 2024
1 parent 6c232e2 commit 576b9f2
Show file tree
Hide file tree
Showing 3 changed files with 37 additions and 0 deletions.
3 changes: 3 additions & 0 deletions ios/Gemfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
source "https://rubygems.org"

gem "fastlane"
7 changes: 7 additions & 0 deletions ios/fastlane/Appfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
app_identifier("com.helium.mobile.wallet") # The bundle identifier of your app

itc_team_id("118077280") # App Store Connect Team ID
team_id("PVM9KJZ2AD") # Developer Portal Team ID

# For more information about the Appfile, see:
# https://docs.fastlane.tools/advanced/#appfile
27 changes: 27 additions & 0 deletions ios/fastlane/Fastfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
# This file contains the fastlane.tools configuration
# You can find the documentation at https://docs.fastlane.tools
#
# For a list of all available actions, check out
#
# https://docs.fastlane.tools/actions
#
# For a list of all available plugins, check out
#
# https://docs.fastlane.tools/plugins/available-plugins
#

# Uncomment the line if you want fastlane to automatically update itself
# update_fastlane

default_platform(:ios)

platform :ios do
desc "Push a build to TestFlight"
lane :publish do
upload_to_testflight(
ipa: ENV['BITRISE_IPA_PATH'],
skip_waiting_for_build_processing: true,
changelog: ENV['BITRISE_GIT_MESSAGE'],
)
end
end

0 comments on commit 576b9f2

Please sign in to comment.