Skip to content

Commit c68ee2f

Browse files
committed
chore: Fastlane 설치
1 parent d97d7f2 commit c68ee2f

4 files changed

Lines changed: 74 additions & 0 deletions

File tree

GimiFeedback/fastlane/Appfile

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
# app_identifier("[[APP_IDENTIFIER]]") # The bundle identifier of your app
2+
# apple_id("[[APPLE_ID]]") # Your Apple Developer Portal username
3+
4+
5+
# For more information about the Appfile, see:
6+
# https://docs.fastlane.tools/advanced/#appfile

GimiFeedback/fastlane/Fastfile

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
# This file contains the fastlane.tools configuration
2+
# You can find the documentation at https://docs.fastlane.tools
3+
#
4+
# For a list of all available actions, check out
5+
#
6+
# https://docs.fastlane.tools/actions
7+
#
8+
# For a list of all available plugins, check out
9+
#
10+
# https://docs.fastlane.tools/plugins/available-plugins
11+
#
12+
13+
# Uncomment the line if you want fastlane to automatically update itself
14+
# update_fastlane
15+
16+
default_platform(:ios)
17+
18+
platform :ios do
19+
desc "Description of what the lane does"
20+
lane :custom_lane do
21+
# add actions here: https://docs.fastlane.tools/actions
22+
end
23+
end

GimiFeedback/fastlane/README.md

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
fastlane documentation
2+
----
3+
4+
# Installation
5+
6+
Make sure you have the latest version of the Xcode command line tools installed:
7+
8+
```sh
9+
xcode-select --install
10+
```
11+
12+
For _fastlane_ installation instructions, see [Installing _fastlane_](https://docs.fastlane.tools/#installing-fastlane)
13+
14+
# Available Actions
15+
16+
## iOS
17+
18+
### ios custom_lane
19+
20+
```sh
21+
[bundle exec] fastlane ios custom_lane
22+
```
23+
24+
Description of what the lane does
25+
26+
----
27+
28+
This README.md is auto-generated and will be re-generated every time [_fastlane_](https://fastlane.tools) is run.
29+
30+
More information about _fastlane_ can be found on [fastlane.tools](https://fastlane.tools).
31+
32+
The documentation of _fastlane_ can be found on [docs.fastlane.tools](https://docs.fastlane.tools).

GimiFeedback/fastlane/report.xml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<testsuites>
3+
<testsuite name="fastlane.lanes">
4+
5+
6+
7+
8+
<testcase classname="fastlane.lanes" name="0: default_platform" time="0.000167">
9+
10+
</testcase>
11+
12+
</testsuite>
13+
</testsuites>

0 commit comments

Comments
 (0)