Skip to content

Commit

Permalink
removed old ios fastlane
Browse files Browse the repository at this point in the history
  • Loading branch information
Casper Rogild Storm committed Jun 4, 2018
1 parent e14b838 commit 20a9b9f
Show file tree
Hide file tree
Showing 5 changed files with 49 additions and 55 deletions.
6 changes: 6 additions & 0 deletions Gemfile
@@ -0,0 +1,6 @@
source "https://rubygems.org"

gem 'fastlane'

plugins_path = File.join(File.dirname(__FILE__), 'fastlane', 'Pluginfile')
eval_gemfile(plugins_path) if File.exist?(plugins_path)
23 changes: 16 additions & 7 deletions ios/fastlane/README.md → fastlane/README.md
Expand Up @@ -15,17 +15,26 @@ Install _fastlane_ using
or alternatively using `brew cask install fastlane`

# Available Actions
## iOS
### ios codesigning
### increment_build
```
fastlane ios codesigning
fastlane increment_build
```
Fetch all production/staging certificates and provisioning profiles
### ios beta
Increment both projects
### itunes_connect
```
fastlane ios beta
fastlane itunes_connect
```
Submit a new Beta Build to Apple TestFlight
Deploy a new version to iTunes Connect
### play_store
```
fastlane play_store
```
Deploy a new version to Google Play
### codesigning
```
fastlane codesigning
```
Fetch all certificates and provisioning profiles

----

Expand Down
5 changes: 4 additions & 1 deletion fastlane/compile/build.rb
Expand Up @@ -13,7 +13,10 @@
lane :itunes_connect do |options|
dry = options[:dry] || false
path = ENV["IOS_PROJECT"],
match(type: "appstore")
match(
type: "appstore"
git_url: "ENV["CERTIFICATES_REPO_URL"]"
)
if !dry
increment_build
end
Expand Down
23 changes: 23 additions & 0 deletions fastlane/report.xml
@@ -0,0 +1,23 @@
<?xml version="1.0" encoding="UTF-8"?>
<testsuites>
<testsuite name="fastlane.lanes">




<testcase classname="fastlane.lanes" name="0: opt_out_usage" time="0.03032">

</testcase>


<testcase classname="fastlane.lanes" name="1: Verifying fastlane version" time="0.007768">

</testcase>


<testcase classname="fastlane.lanes" name="2: match" time="6.823749">

</testcase>

</testsuite>
</testsuites>
47 changes: 0 additions & 47 deletions ios/fastlane/Fastfile

This file was deleted.

0 comments on commit 20a9b9f

Please sign in to comment.