mirror of
https://github.com/home-assistant/iOS.git
synced 2026-06-17 17:49:07 -05:00
<!-- Thank you for submitting a Pull Request and helping to improve Home Assistant. Please complete the following sections to help the processing and review of your changes. Please do not delete anything from this template. --> ## Summary <!-- Provide a brief summary of the changes you have made and most importantly what they aim to achieve --> ## Screenshots <!-- If this is a user-facing change not in the frontend, please include screenshots in light and dark mode. --> ## Link to pull request in Documentation repository <!-- Pull requests that add, change or remove functionality must have a corresponding pull request in the Companion App Documentation repository (https://github.com/home-assistant/companion.home-assistant). Please add the number of this pull request after the "#" --> Documentation: home-assistant/companion.home-assistant# ## Any other notes <!-- If there is any other information of note, like if this Pull Request is part of a bigger change, please include it here. -->
32 lines
1.2 KiB
Ruby
32 lines
1.2 KiB
Ruby
# Home Assistant iOS Fastfile
|
|
# This file orchestrates all the build, test, and deployment processes for the Home Assistant iOS app.
|
|
# The implementation is modularized into separate files in the lanes/ directory for better maintainability.
|
|
|
|
# Customise this file, documentation can be found here:
|
|
# https://github.com/fastlane/fastlane/tree/master/docs
|
|
# All available actions: https://github.com/fastlane/fastlane/blob/master/fastlane/docs/Actions.md
|
|
# can also be listed using the `fastlane actions` command
|
|
|
|
# Change the syntax highlighting to Ruby
|
|
# All lines starting with a # are ignored when running `fastlane`
|
|
|
|
# If you want to automatically update fastlane if a new version is available:
|
|
# update_fastlane
|
|
|
|
# This is the minimum version number required.
|
|
# Update this, if you use features of a newer version
|
|
fastlane_version '2.137.0'
|
|
default_platform :ios
|
|
|
|
# Import modular lane files
|
|
import './lanes/setup.rb'
|
|
import './lanes/quality.rb'
|
|
import './lanes/provisioning.rb'
|
|
import './lanes/assets.rb'
|
|
import './lanes/localization.rb'
|
|
import './lanes/version.rb'
|
|
import './lanes/testing.rb'
|
|
import './lanes/build_utils.rb'
|
|
import './lanes/ios.rb'
|
|
import './lanes/macos.rb'
|