Initial commit
This commit is contained in:
3
fastlane/.gitignore
vendored
Normal file
3
fastlane/.gitignore
vendored
Normal file
@ -0,0 +1,3 @@
|
||||
report.xml
|
||||
README.md
|
||||
test_output
|
7
fastlane/Appfile
Normal file
7
fastlane/Appfile
Normal file
@ -0,0 +1,7 @@
|
||||
app_identifier "com.zoxcore.Antidote" # The bundle identifier of your app
|
||||
apple_id "d@dvor.me" # Your Apple email address
|
||||
|
||||
team_id "Y46L589C5C" # Developer Portal Team ID
|
||||
|
||||
# you can even provide different app identifiers, Apple IDs and team names per lane:
|
||||
# More information: https://github.com/fastlane/fastlane/blob/master/fastlane/docs/Appfile.md
|
24
fastlane/Fastfile
Normal file
24
fastlane/Fastfile
Normal file
@ -0,0 +1,24 @@
|
||||
|
||||
default_platform :ios
|
||||
|
||||
platform :ios do
|
||||
before_all do
|
||||
end
|
||||
|
||||
desc "Release app to the App Store"
|
||||
lane :release do
|
||||
appstore(
|
||||
force: false,
|
||||
skip_binary_upload: true,
|
||||
skip_screenshots: true,
|
||||
submit_for_review: true,
|
||||
automatic_release: true
|
||||
)
|
||||
end
|
||||
|
||||
after_all do |lane|
|
||||
end
|
||||
|
||||
error do |lane, exception|
|
||||
end
|
||||
end
|
Reference in New Issue
Block a user