-
Notifications
You must be signed in to change notification settings - Fork 15
/
index.html
executable file
·872 lines (846 loc) · 43.9 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta content="IE=Edge" http-equiv="X-UA-Compatible">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0, height=device-height">
<title>fastlane - App automation done right</title>
<meta property="og:title" content="fastlane - App automation done right">
<meta property="og:site_name" content="fastlane">
<meta property="og:type" content="website">
<meta property="og:url" content="https://fastlane.tools/">
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-18658848-9', 'auto');
ga('require', 'eventTracker', {
events: ['click', 'auxclick', 'contextmenu'],
hitFilter: function(model, element, event){
model.set('eventAction', event.type, true)
}
});
ga('send', 'pageview');
</script>
<link rel="shortcut icon" href="/assets/images/favicon.ico">
<link rel="stylesheet" href="//fonts.googleapis.com/css?family=Roboto:300,400,700,900">
<link rel="stylesheet" href="//www.gstatic.com/external_hosted/slick/slick.css">
<link rel="stylesheet" href="/assets/css/main.min.css">
</head>
<body class="index">
<header class="header" data-nav>
<div class="header__wrapper">
<div class="header__lockup">
<button class="header__lockup__menu-button" type="button" data-nav-toggle>
<img class="header__lockup__menu-button__open" src="/assets/images/menu-hamburger.svg" alt="Menu open">
<img class="header__lockup__menu-button__close" src="/assets/images/menu-close.svg" alt="Menu close">
</button>
<a
ga-on="click"
ga-event-category="Navigation"
ga-event-label="Home"
href="/">
<img class="header__lockup__logo" src="/assets/images/fastlane-logo-lockup.png" alt="Fastlane logo">
</a>
</div>
<nav class="header__nav">
<ul class="header__nav__list header__nav__list--primary">
<li class="header__nav__list__item">
Use fastlane
<ul class="header__nav__list header__nav__list--secondary">
<li class="header__nav__list__item header__nav__list__item--disc header__nav__list__item--screenshots">
<a ga-on="click" ga-event-category="Navigation" ga-event-label="Automate screenshots" href="#screenshots">Automate screenshots</a>
</li>
<li class="header__nav__list__item header__nav__list__item--disc header__nav__list__item--beta">
<a ga-on="click" ga-event-category="Navigation" ga-event-label="Beta deployments" href="#beta">Beta deployments</a>
</li>
<li class="header__nav__list__item header__nav__list__item--disc header__nav__list__item--appstore">
<a ga-on="click" ga-event-category="Navigation" ga-event-label="Deployments" href="#app-store">App store deployments</a>
</li>
<li class="header__nav__list__item header__nav__list__item--disc header__nav__list__item--codesigning">
<a ga-on="click" ga-event-category="Navigation" ga-event-label="Code signing" href="#code-signing">Code signing</a>
</li>
</ul>
</li>
<li class="header__nav__list__item">
<a ga-on="click" ga-event-category="Navigation" ga-event-label="Integrations" href="#integrations">Integrations</a>
</li>
<li class="header__nav__list__item">
<a ga-on="click" ga-event-category="Navigation" ga-event-label="How it works" href="#how-it-works">How it works</a>
</li>
<li class="header__nav__list__item">
<a ga-on="click" ga-event-category="Navigation" ga-event-label="Contribute" href="#contribute">Contribute</a>
</li>
<li class="header__nav__list__item">
<a ga-on="click" ga-event-category="Navigation" ga-event-label="Docs" target="_blank" href="https://docs.fastlane.tools/">Docs</a>
</li>
</ul>
</nav>
</div>
</header>
<section class="section hero">
<div class="hero__background">
<div id="particle__wrapper"></div>
<div class="triangle__wrapper">
<div class="triangle__wrapper--left">
<svg class="mesh-lines-top-left" viewBox="0 0 400 400" width="400" preserveAspectRatio="xMinYMin">
<polygon class="triangle triangle-1--detach has-transform" fill="transparent" stroke="#3e3ef8" points="50 15, 100 100, 0 100" transform="translate(355,140) rotate(30)" />
<polygon class="triangle triangle-1--attach has-transform" fill="transparent" stroke="#3e3ef8" points="50 15, 100 100, 0 100" transform="translate(500,-110)" cx="0" cy="0"/>
<polygon class="triangle triangle-3--attach has-transform" fill="transparent" stroke="#3e3ef8" points="50 15, 100 100, 0 100" transform="translate(355,140) rotate(30)" cx="0" cy="0"/>
<g class="mesh-lines-group has-transform" transform="translate(0,100)">
<path class="mesh-lines" d="M374.85,416.26" transform="translate(-185.26 -306.7)"/>
<path class="mesh-lines" d="M374.85,343.54" transform="translate(-185.26 -306.7)"/>
<path class="mesh-lines" d="M374.85,489" transform="translate(-185.26 -306.7)"/>
<path class="mesh-lines" d="M374.85,416.26V489" transform="translate(-185.26 -306.7)"/>
<line class="mesh-lines" x1="252.73" y1="73.05" x2="252.73" y2="145.91"/>
<line class="mesh-lines" x1="252.73" y1="0.47" x2="252.73" y2="73.05"/>
<line class="mesh-lines" x1="252.66" y1="73.15" x2="315.7" y2="109.55"/>
<line class="mesh-lines" x1="189.75" y1="36.83" x2="252.66" y2="73.15"/>
<line class="mesh-lines" x1="252.73" y1="73.19" x2="189.75" y2="109.55"/>
<line class="mesh-lines" x1="315.7" y1="36.83" x2="252.73" y2="73.19"/>
<line class="mesh-lines" x1="315.7" y1="36.83" x2="378.61" y2="73.15"/>
<line class="mesh-lines" x1="378.68" y1="73.19" x2="315.7" y2="109.55"/>
<line class="mesh-lines" x1="315.7" y1="36.83" x2="315.7" y2="109.55"/>
<path class="mesh-lines" d="M374.85,416.26V343.54" transform="translate(-185.26 -306.7)"/>
<line class="mesh-lines" x1="315.7" y1="36.83" x2="252.73" y2="0.47"/>
<line class="mesh-lines" x1="315.7" y1="109.55" x2="315.7" y2="36.83"/>
<line class="mesh-lines" x1="252.73" y1="145.91" x2="315.7" y2="109.55"/>
<line class="mesh-lines" x1="189.75" y1="109.55" x2="252.73" y2="145.91"/>
<line class="mesh-lines" x1="189.75" y1="36.83" x2="189.75" y2="109.55"/>
<line class="mesh-lines" x1="315.7" y1="182.28" x2="252.73" y2="145.91"/>
<line class="mesh-lines" x1="252.73" y1="145.91" x2="189.75" y2="182.28"/>
<path class="mesh-lines" d="M501,416.26V489" transform="translate(-185.26 -306.7)"/>
<line class="mesh-lines" x1="0.5" y1="73.01" x2="0.5" y2="145.87"/>
<line class="mesh-lines" x1="0.5" y1="0.43" x2="0.5" y2="73.01"/>
<line class="mesh-lines" x1="0.43" y1="73.11" x2="63.48" y2="109.51"/>
<line class="mesh-lines" x1="63.48" y1="36.79" x2="0.5" y2="73.15"/>
<line class="mesh-lines" x1="0.66" y1="145.87" x2="0.66" y2="218.45"/>
<line class="mesh-lines" x1="63.64" y1="182.24" x2="0.66" y2="218.6"/>
<line class="mesh-lines" x1="126.46" y1="73.01" x2="126.46" y2="145.87"/>
<line class="mesh-lines" x1="126.46" y1="0.43" x2="126.46" y2="73.01"/>
<line class="mesh-lines" x1="126.39" y1="73.11" x2="189.43" y2="109.51"/>
<line class="mesh-lines" x1="63.48" y1="36.79" x2="126.39" y2="73.11"/>
<line class="mesh-lines" x1="126.46" y1="73.15" x2="63.48" y2="109.51"/>
<line class="mesh-lines" x1="189.43" y1="36.79" x2="126.46" y2="73.15"/>
<line class="mesh-lines" x1="189.43" y1="109.51" x2="189.43" y2="36.79"/>
<line class="mesh-lines" x1="126.46" y1="145.87" x2="189.43" y2="109.51"/>
<line class="mesh-lines" x1="63.48" y1="109.51" x2="126.46" y2="145.87"/>
<line class="mesh-lines" x1="63.48" y1="36.79" x2="63.48" y2="109.51"/>
<line class="mesh-lines" x1="126.46" y1="0.43" x2="63.48" y2="36.79"/>
<line class="mesh-lines" x1="189.43" y1="36.79" x2="126.46" y2="0.43"/>
<line class="mesh-lines" x1="63.48" y1="36.79" x2="0.5" y2="0.43"/>
<line class="mesh-lines" x1="63.48" y1="109.51" x2="63.48" y2="36.79"/>
<line class="mesh-lines" x1="0.5" y1="145.87" x2="63.48" y2="109.51"/>
<line class="mesh-lines" x1="63.48" y1="182.24" x2="0.5" y2="145.87"/>
<line class="mesh-lines" x1="126.46" y1="145.87" x2="63.48" y2="182.24"/>
<line class="mesh-lines" x1="189.43" y1="182.24" x2="126.46" y2="145.87"/>
<path class="mesh-lines" d="M248.74,416.22v72.72" transform="translate(-185.26 -306.7)"/>
<path class="mesh-lines" d="M374.69,416.22v72.72" transform="translate(-185.26 -306.7)"/>
</g>
</svg>
<svg class="mesh-lines-bottom-left" viewBox="0 0 400 400" width="400" preserveAspectRatio="xMinYMin">
<g class="mesh-lines-group has-transform" transform="translate(-100,400)" >
<path class="mesh-lines" d="M374.85,416.26" transform="translate(-248.24 -306.74)"/>
<path class="mesh-lines" d="M374.85,561.7" transform="translate(-248.24 -306.74)"/>
<path class="mesh-lines" d="M374.85,489" transform="translate(-248.24 -306.74)"/>
<path class="mesh-lines" d="M374.85,416.26V489" transform="translate(-248.24 -306.74)"/>
<line class="mesh-lines" x1="189.75" y1="73.01" x2="189.75" y2="145.87"/>
<line class="mesh-lines" x1="189.68" y1="73.11" x2="252.73" y2="109.51"/>
<line class="mesh-lines" x1="189.75" y1="73.15" x2="126.77" y2="109.51"/>
<line class="mesh-lines" x1="189.91" y1="218.45" x2="189.91" y2="291.32"/>
<line class="mesh-lines" x1="189.91" y1="145.87" x2="189.91" y2="218.45"/>
<line class="mesh-lines" x1="189.84" y1="218.56" x2="252.88" y2="254.96"/>
<line class="mesh-lines" x1="126.93" y1="182.24" x2="189.84" y2="218.56"/>
<line class="mesh-lines" x1="189.91" y1="218.6" x2="126.93" y2="254.96"/>
<line class="mesh-lines" x1="252.88" y1="182.24" x2="189.91" y2="218.6"/>
<line class="mesh-lines" x1="315.7" y1="145.83" x2="315.7" y2="218.41"/>
<line class="mesh-lines" x1="252.73" y1="182.2" x2="315.64" y2="218.52"/>
<line class="mesh-lines" x1="315.7" y1="218.56" x2="252.73" y2="254.92"/>
<line class="mesh-lines" x1="315.7" y1="73.01" x2="315.7" y2="145.87"/>
<line class="mesh-lines" x1="315.7" y1="0.43" x2="315.7" y2="73.01"/>
<line class="mesh-lines" x1="315.7" y1="73.15" x2="252.73" y2="109.51"/>
<line class="mesh-lines" x1="378.68" y1="36.79" x2="315.7" y2="73.15"/>
<line class="mesh-lines" x1="252.73" y1="109.51" x2="315.7" y2="145.87"/>
<line class="mesh-lines" x1="378.68" y1="36.79" x2="315.7" y2="0.43"/>
<path class="mesh-lines" d="M374.85,561.7V489" transform="translate(-248.24 -306.74)"/>
<line class="mesh-lines" x1="189.75" y1="145.87" x2="252.73" y2="109.51"/>
<line class="mesh-lines" x1="126.77" y1="109.51" x2="189.75" y2="145.87"/>
<line class="mesh-lines" x1="252.73" y1="182.24" x2="189.75" y2="145.87"/>
<polyline class="mesh-lines" points="189.75 291.32 252.73 254.96 252.73 182.24"/>
<line class="mesh-lines" x1="126.77" y1="254.96" x2="189.75" y2="291.32"/>
<line class="mesh-lines" x1="126.77" y1="182.24" x2="126.77" y2="254.96"/>
<line class="mesh-lines" x1="189.75" y1="145.87" x2="126.77" y2="182.24"/>
<line class="mesh-lines" x1="252.73" y1="182.24" x2="252.73" y2="254.96"/>
<line class="mesh-lines" x1="315.7" y1="145.87" x2="252.73" y2="182.24"/>
<path class="mesh-lines" d="M501,416.26V489" transform="translate(-248.24 -306.74)"/>
<line class="mesh-lines" x1="63.48" y1="218.37" x2="63.48" y2="291.24"/>
<line class="mesh-lines" x1="63.48" y1="145.8" x2="63.48" y2="218.37"/>
<line class="mesh-lines" x1="63.41" y1="218.48" x2="126.46" y2="254.88"/>
<line class="mesh-lines" x1="0.5" y1="182.16" x2="63.41" y2="218.48"/>
<line class="mesh-lines" x1="63.48" y1="218.52" x2="0.5" y2="254.88"/>
<line class="mesh-lines" x1="126.46" y1="182.16" x2="63.48" y2="218.52"/>
<line class="mesh-lines" x1="63.48" y1="145.83" x2="126.46" y2="109.47"/>
<line class="mesh-lines" x1="63.48" y1="291.28" x2="126.46" y2="254.92"/>
<line class="mesh-lines" x1="0.5" y1="254.92" x2="63.48" y2="291.28"/>
<line class="mesh-lines" x1="0.5" y1="182.2" x2="0.5" y2="254.92"/>
<line class="mesh-lines" x1="63.48" y1="145.83" x2="0.5" y2="182.2"/>
<line class="mesh-lines" x1="126.46" y1="182.2" x2="63.48" y2="145.83"/>
<line class="mesh-lines" x1="126.46" y1="254.92" x2="126.46" y2="182.2"/>
<path class="mesh-lines" d="M374.69,416.22v72.72" transform="translate(-248.24 -306.74)"/>
</g>
</svg>
</div>
<div class="triangle__wrapper--right">
<svg class="mesh-lines-top-right" viewBox="0 0 320 320" width="320" preserveAspectRatio="xMinYMin">
<polygon class="triangle triangle-2--attach has-transform" fill="transparent" stroke="#3e3ef8" points="50 15, 100 100, 0 100" />
<polygon class="triangle triangle-2--float-in has-transform" fill="transparent" stroke="#3e3ef8" points="50 15, 100 100, 0 100"/>
<g class="mesh-lines-group mesh-lines-top-right-group">
<path class="mesh-lines" d="M300.45,341.79" />
<line class="mesh-lines" x1="73.3" y1="63.23" x2="0.43" y2="63.23"/>
<line class="mesh-lines" x1="145.87" y1="63.23" x2="73.3" y2="63.23"/>
<line class="mesh-lines" x1="73.19" y1="63.16" x2="36.79" y2="126.21"/>
<line class="mesh-lines" x1="73.15" y1="63.23" x2="36.79" y2="0.25"/>
<line class="mesh-lines" x1="109.51" y1="126.21" x2="73.15" y2="63.23"/>
<line class="mesh-lines" x1="109.51" y1="126.21" x2="145.87" y2="63.23"/>
<line class="mesh-lines" x1="0.43" y1="63.23" x2="36.79" y2="126.21"/>
<line class="mesh-lines" x1="36.79" y1="0.25" x2="0.43" y2="63.23"/>
</g>
</svg>
<svg class="mesh-lines-group mesh-lines-bottom-right" viewBox="0 -320 320 320" width="320" preserveAspectRatio="xMinYMin">
<g>
<path class="mesh-lines" d="M374.85,489" transform="translate(-122.12 -343.12)"/>
<path class="mesh-lines" d="M374.85,416.24" transform="translate(-122.12 -343.12)"/>
<path class="mesh-lines" d="M374.85,561.68" transform="translate(-122.12 -343.12)"/>
<path class="mesh-lines" d="M374.85,489v72.72" transform="translate(-122.12 -343.12)"/>
<line class="mesh-lines" x1="315.86" y1="109.33" x2="315.86" y2="182.2"/>
<line class="mesh-lines" x1="315.86" y1="36.75" x2="315.86" y2="109.33"/>
<line class="mesh-lines" x1="315.79" y1="109.43" x2="378.84" y2="145.83"/>
<line class="mesh-lines" x1="252.88" y1="73.11" x2="315.79" y2="109.43"/>
<line class="mesh-lines" x1="315.86" y1="109.47" x2="252.88" y2="145.83"/>
<line class="mesh-lines" x1="378.84" y1="73.11" x2="315.86" y2="109.47"/>
<line class="mesh-lines" x1="378.84" y1="73.11" x2="378.84" y2="145.83"/>
<path class="mesh-lines" d="M374.85,489V416.24" transform="translate(-122.12 -343.12)"/>
<line class="mesh-lines" x1="378.84" y1="73.11" x2="315.86" y2="36.75"/>
<line class="mesh-lines" x1="378.84" y1="145.83" x2="378.84" y2="73.11"/>
<line class="mesh-lines" x1="315.86" y1="182.2" x2="378.84" y2="145.83"/>
<line class="mesh-lines" x1="252.88" y1="145.83" x2="315.86" y2="182.2"/>
<line class="mesh-lines" x1="252.88" y1="73.11" x2="252.88" y2="145.83"/>
<line class="mesh-lines" x1="315.86" y1="36.75" x2="252.88" y2="73.11"/>
<line class="mesh-lines" x1="378.84" y1="218.56" x2="315.86" y2="182.2"/>
<line class="mesh-lines" x1="315.86" y1="182.2" x2="252.88" y2="218.56"/>
<path class="mesh-lines" d="M501,489v72.72" transform="translate(-122.12 -343.12)"/>
<path class="mesh-lines" d="M500.36,270.83" transform="translate(-122.12 -343.12)"/>
<line class="mesh-lines" x1="315.26" y1="36.79" x2="378.24" y2="0.43"/>
<line class="mesh-lines" x1="378.24" y1="73.15" x2="315.26" y2="36.79"/>
<path class="mesh-lines" d="M500.36,343.56v72.72" transform="translate(-122.12 -343.12)"/>
<path class="mesh-lines" d="M122.62,488.92" transform="translate(-122.12 -343.12)"/>
<path class="mesh-lines" d="M122.62,416.2" transform="translate(-122.12 -343.12)"/>
<line class="mesh-lines" x1="63.64" y1="109.29" x2="63.64" y2="182.16"/>
<line class="mesh-lines" x1="63.64" y1="36.71" x2="63.64" y2="109.29"/>
<line class="mesh-lines" x1="63.57" y1="109.39" x2="126.61" y2="145.8"/>
<line class="mesh-lines" x1="0.66" y1="73.07" x2="63.57" y2="109.39"/>
<line class="mesh-lines" x1="63.64" y1="109.43" x2="0.66" y2="145.8"/>
<line class="mesh-lines" x1="126.61" y1="73.07" x2="63.64" y2="109.43"/>
<line class="mesh-lines" x1="189.59" y1="109.29" x2="189.59" y2="182.16"/>
<line class="mesh-lines" x1="189.52" y1="109.39" x2="252.57" y2="145.8"/>
<line class="mesh-lines" x1="126.61" y1="73.07" x2="189.52" y2="109.39"/>
<line class="mesh-lines" x1="189.59" y1="109.43" x2="126.61" y2="145.8"/>
<line class="mesh-lines" x1="252.57" y1="73.07" x2="189.59" y2="109.43"/>
<line class="mesh-lines" x1="252.57" y1="145.79" x2="252.57" y2="73.07"/>
<line class="mesh-lines" x1="189.59" y1="182.16" x2="252.57" y2="145.79"/>
<line class="mesh-lines" x1="126.61" y1="145.79" x2="189.59" y2="182.16"/>
<line class="mesh-lines" x1="126.61" y1="73.07" x2="126.61" y2="145.79"/>
<path class="mesh-lines" d="M122.62,488.92V416.2" transform="translate(-122.12 -343.12)"/>
<line class="mesh-lines" x1="126.61" y1="73.07" x2="63.64" y2="36.71"/>
<line class="mesh-lines" x1="126.61" y1="145.8" x2="126.61" y2="73.07"/>
<line class="mesh-lines" x1="63.64" y1="182.16" x2="126.61" y2="145.8"/>
<line class="mesh-lines" x1="0.66" y1="145.8" x2="63.64" y2="182.16"/>
<line class="mesh-lines" x1="0.66" y1="73.07" x2="0.66" y2="145.8"/>
<line class="mesh-lines" x1="63.64" y1="36.71" x2="0.66" y2="73.07"/>
<line class="mesh-lines" x1="126.61" y1="218.52" x2="63.64" y2="182.16"/>
<line class="mesh-lines" x1="189.59" y1="182.16" x2="126.61" y2="218.52"/>
<line class="mesh-lines" x1="252.57" y1="218.52" x2="189.59" y2="182.16"/>
<path class="mesh-lines" d="M248.74,488.92v72.72" transform="translate(-122.12 -343.12)"/>
<path class="mesh-lines" d="M374.69,488.92v72.72" transform="translate(-122.12 -343.12)"/>
</g>
</svg>
</div>
</div>
</div>
<div class="hero__wrapper">
<div class="hero__inner-wrapper">
<h1 class="section__headline">App automation done right</h1>
<div class="hero__summary">
The easiest way to build and release mobile apps.<br class="hide-lt-s"> <i>fastlane</i> handles tedious tasks so you don’t have to.
</div>
<div class="hero__hours-counter">
<h4 class="hero__hours-counter__headline">Developer hours saved</h4>
<div class="hero__hours-counter__counter odometer" id="odometer">
10,558,200
</div>
</div>
</div>
</div>
</section>
<section id="features" class="section features">
<div class="section__wrapper">
<hr class="features__divider">
<h2 class="section__headline">Automate your development and release process</h2>
<div class="section__summary">
<i>fastlane</i> is an open source platform aimed at simplifying Android and iOS deployment.<br class="hide-lt-m"> <i>fastlane</i> lets you automate every aspect of your development and release workflow.
</div>
<div class="hide-lt-s features__cards">
<div class="features__cards__card features__cards__card--screenshots card">
<div class="feature-icon feature-icon--screenshots">
<div class="feature-icon__flex">
<img class="feature-icon__image" src="/assets/images/ic_screenshots.svg" alt="Screenshots icon">
</div>
</div>
<h4 class="features__cards__card__headline">Automate<br>screenshots</h4>
<div class="features__cards__card__summary">
Automatically generate localized screenshots for the app store
</div>
<a
class="button button--screenshots features__cards__card__cta"
ga-on="click"
ga-event-category="Learn More"
ga-event-label="screenshots"
href="#screenshots">Learn more</a>
</div>
<div class="features__cards__card features__cards__card--beta card">
<div class="feature-icon feature-icon--beta">
<div class="feature-icon__flex">
<img class="feature-icon__image" src="/assets/images/ic_beta.svg" alt="Beta deployment icon">
</div>
</div>
<h4 class="features__cards__card__headline">Beta<br>deployment</h4>
<div class="features__cards__card__summary">
Easily distribute beta builds to testers
</div>
<a
class="button button--beta features__cards__card__cta"
ga-on="click"
ga-event-category="Learn More"
ga-event-label="beta"
href="#beta">Learn more</a>
</div>
<div class="features__cards__card features__cards__card--appstore card">
<div class="feature-icon feature-icon--appstore">
<div class="feature-icon__flex">
<img class="feature-icon__image" src="/assets/images/ic_appstore.svg" alt="App Store icon">
</div>
</div>
<h4 class="features__cards__card__headline">App Store<br>deployment</h4>
<div class="features__cards__card__summary">
Publish a new release to the app store in seconds
</div>
<a
class="button button--appstore features__cards__card__cta"
ga-on="click"
ga-event-category="Learn More"
ga-event-label="appstore"
href="#app-store">Learn more</a>
</div>
<div class="features__cards__card features__cards__card--codesigning card">
<div class="feature-icon feature-icon--codesigning">
<div class="feature-icon__flex">
<img class="feature-icon__image" src="/assets/images/ic_codesigning.svg" alt="Code signing">
</div>
</div>
<h4 class="features__cards__card__headline">Code<br>signing</h4>
<div class="features__cards__card__summary">
Reliably and consistently code sign your app–no more headaches
</div>
<a
class="button button--codesigning features__cards__card__cta"
ga-on="click"
ga-event-category="Learn More"
ga-event-label="codesigning"
href="#code-signing">Learn more</a>
</div>
</div>
</div>
</section>
<section id="screenshots" class="section feature feature--screenshots">
<div class="section__wrapper">
<div class="feature__header">
<div class="feature-icon feature-icon--screenshots">
<div class="feature-icon__flex">
<img src="/assets/images/ic_screenshots.svg" alt="Screenshots icon">
</div>
</div>
<h2 class="section__headline">Capture screenshots automatically</h2>
</div>
<div class="feature__flex">
<div class="feature__content-wrapper">
<h5 id="generate-localized-app-store-screenshots-in-minutes.">Generate localized app store screenshots in minutes.</h5>
<ul>
<li>Automatically capture localized screenshots for each language and device
your app supports</li>
<li>Configure it once, and store the configuration so anyone on the team
can generate screenshots</li>
<li>Work on something else – fastlane takes screenshots without interrupting
your other tasks</li>
</ul>
<span class="feature__cta">
Capture screenshots on<br class="hide-gt-s"> <a
target="_blank"
class="preserve-case"
ga-on="click"
ga-event-category="Screenshots"
ga-event-label="iOS"
href="https://docs.fastlane.tools/getting-started/ios/screenshots/">
iOS</a> and <a
target="_blank"
ga-on="click"
ga-event-category="Screenshots"
ga-event-label="Android"
href="https://docs.fastlane.tools/getting-started/android/screenshots/">
Android</a>
</span>
</div>
<div class="feature__image-wrapper">
<img
class="feature__image-wrapper__image"
src="/assets/images/screenshots-illo.svg"
alt="Screenshots illustration"
width="634"
height="587">
</div>
</div>
</div>
</section>
<section id="beta" class="section feature feature--beta">
<div class="section__wrapper">
<div class="feature__header">
<div class="feature-icon feature-icon--beta">
<div class="feature-icon__flex">
<img src="/assets/images/ic_beta.svg" alt="Beta deployment icon">
</div>
</div>
<h2 class="section__headline">Distribute beta builds</h2>
</div>
<div class="feature__flex">
<div class="feature__content-wrapper">
<h5 id="easily-publish-new-beta-builds-to-testers-so-you-can-get-valuable-feedback,-fast.">Easily publish new beta builds to testers so you can get valuable feedback, fast.</h5>
<ul>
<li>Automate the most time-consuming beta distribution steps including
incrementing the build version, code signing, building and uploading
the app, and setting a changelog</li>
<li>Support for over 15 beta testing services including TestFlight,
Crashlytics Beta, Play, and Hockey</li>
<li>Freely switch between beta services without needing to reconfigure
fastlane</li>
</ul>
<span class="feature__cta">
Distribute betas on<br class="hide-gt-s"> <a
target="_blank"
class="preserve-case"
ga-on="click"
ga-event-category="Distribute Beta"
ga-event-label="iOS"
href="https://docs.fastlane.tools/getting-started/ios/beta-deployment/">
iOS</a> and <a
target="_blank"
ga-on="click"
ga-event-category="Distribute Beta"
ga-event-label="Android"
href="https://docs.fastlane.tools/getting-started/android/beta-deployment/">
Android</a>
</span>
</div>
<div class="feature__image-wrapper">
<img
class="feature__image-wrapper__image"
src="/assets/images/beta-illo.svg"
alt="Beta illustration"
width="641"
height="549">
</div>
</div>
</div>
</section>
<section id="app-store" class="section feature feature--appstore">
<div class="section__wrapper">
<div class="feature__header">
<div class="feature-icon feature-icon--appstore">
<div class="feature-icon__flex">
<img src="/assets/images/ic_appstore.svg" alt="App Store icon">
</div>
</div>
<h2 class="section__headline">Publish your app with the push of a button</h2>
</div>
<div class="feature__flex">
<div class="feature__content-wrapper">
<h5 id="automate-the-entire-app-store-deployment-process.">Automate the entire app store deployment process.</h5>
<ul>
<li>Create a repeatable custom workflow to build, upload and distribute
new releases to the app store</li>
<li>Upload and manage all of your app’s metadata including screenshots</li>
<li>Automatically submit new versions of your app for review</li>
</ul>
<span class="feature__cta">
Publish apps on<br class="hide-gt-s"> <a
target="_blank"
class="preserve-case"
ga-on="click"
ga-event-category="Publish"
ga-event-label="iOS"
href="https://docs.fastlane.tools/getting-started/ios/appstore-deployment/">
iOS</a> and <a
target="_blank"
ga-on="click"
ga-event-category="Publish"
ga-event-label="Android"
href="https://docs.fastlane.tools/getting-started/android/release-deployment/">
Android</a>
</span>
</div>
<div class="feature__image-wrapper">
<img
class="feature__image-wrapper__image"
src="/assets/images/appstore-illo.svg"
alt="Appstore illustration"
width="627"
height="487">
</div>
</div>
</div>
</section>
<section id="code-signing" class="section feature feature--codesigning">
<div class="section__wrapper">
<div class="feature__header">
<div class="feature-icon feature-icon--codesigning">
<div class="feature-icon__flex">
<img src="/assets/images/ic_codesigning.svg" alt="Code signing">
</div>
</div>
<h2 class="section__headline">Automatic code signing for iOS</h2>
</div>
<div class="feature__flex">
<div class="feature__content-wrapper">
<h5 id="avoid-the-frustration-of-managing-code-signing-identities.">Avoid the frustration of managing code signing identities.</h5>
<ul>
<li>Store your code signing identities and profiles in your own private,
encrypted git repository to securely sync them across machines</li>
<li>Once set up, every developer on your team can reproduce signed builds
on any computer</li>
</ul>
<span class="feature__cta">
<a
target="_blank"
class="button button--codesigning"
ga-on="click"
ga-event-category="Codesigning"
ga-event-label="Simplify signing"
href="https://docs.fastlane.tools/codesigning/getting-started/">
Simplify signing</a>
</span>
</div>
<div class="feature__image-wrapper">
<img
class="feature__image-wrapper__image"
src="/assets/images/codesigning-illo.svg"
alt="Codesigning illustration"
width="684"
height="449">
</div>
</div>
</div>
</section>
<section id="integrations" class="section integration">
<div class="section__wrapper">
<h2 class="section__headline">Continuous Integration support</h2>
<div class="section__summary">
<i>Fastlane</i> integrates effortlessly into existing CI services, including:
</div>
<div class="integration__flex">
<a href="https://www.bitrise.io/" target="_blank" ga-on="click" ga-event-category="Integration" ga-event-label="Bitrise logo">
<img class="integration__flex__item" src="/assets/images/bitrise-logo.png" alt="Bitrise logo" width="145" height="34">
</a>
<a href="https://circleci.com/" target="_blank" ga-on="click" ga-event-category="Integration" ga-event-label="Circle CI logo">
<img class="integration__flex__item" src="/assets/images/circleci-logo.png" alt="Circle CI logo" width="53" height="43">
</a>
<a href="https://jenkins.io/" target="_blank" ga-on="click" ga-event-category="Integration" ga-event-label="Jenkins logo">
<img class="integration__flex__item" src="/assets/images/jenkins-logo.png" alt="Jenkins logo" width="136" height="44">
</a>
<a href="https://travis-ci.org/" target="_blank" ga-on="click" ga-event-category="Integration" ga-event-label="Travis CI logo">
<img class="integration__flex__item" src="/assets/images/travis-logo.png" alt="Travis CI logo" width="112" height="35">
</a>
</div>
<hr>
<h2 class="section__headline">Extend fastlane</h2>
<div class="section__summary">
Customize your deployment workflows using the hundreds of community built <i>fastlane</i> <a
ga-on="click"
ga-event-category="Extend Fastlane"
ga-event-label="Actions"
target="_blank"
href="https://docs.fastlane.tools/actions/">actions</a>
and
<a
ga-on="click"
ga-event-category="Extend Fastlane"
ga-event-label="Plugins"
target="_blank" href="https://docs.fastlane.tools/plugins/available-plugins/">plugins</a>.
</div>
</div>
</section>
<section class="section tweets">
<div class="section__wrapper">
<span class="tweets__begin-quote-mobile">
<img src="/assets/images/quotation-mark.svg" alt="Quote">
</span>
<div class="tweets__carousel slick" data-arrows="true" data-dots="true" data-autoplay="true" data-carousel-name="intro">
<div class="tweets__item">
<span class="tweets__begin-quote-laptop">
<img src="/assets/images/quotation-mark.svg" alt="Quote">
</span>
<div class="tweets__quote">
Fastlane is AMAZING! Thank you! ❤️❤️❤️
</div>
<span class="tweets__end-quote-laptop">
<img src="/assets/images/quotation-mark.svg" alt="Quote">
</span>
<div class="tweets__signature">
<span class="tweets__logo"><img src="/assets/images/twitter-logo.svg" alt="Twitter logo"></span>
<b>@nicollhunt</b> <span class="tweets__time-and-location">2:46 PM - 21 Jun 2017</span></div>
</div>
<div class="tweets__item">
<span class="tweets__begin-quote-laptop">
<img src="/assets/images/quotation-mark.svg" alt="Quote">
</span>
<div class="tweets__quote">
Some free advice: if you develop mobile apps you really need Fastlane. It's a game changer. <a href="https://fastlane.tools" target="_blank">https://fastlane.tools</a>
</div>
<span class="tweets__end-quote-laptop">
<img src="/assets/images/quotation-mark.svg" alt="Quote">
</span>
<div class="tweets__signature">
<span class="tweets__logo"><img src="/assets/images/twitter-logo.svg" alt="Twitter logo"></span>
<b>@deadwinter</b> <span class="tweets__time-and-location">7:01 PM - 5 Apr 2017</span></div>
</div>
<div class="tweets__item">
<span class="tweets__begin-quote-laptop">
<img src="/assets/images/quotation-mark.svg" alt="Quote">
</span>
<div class="tweets__quote">
I'm mad I haven't been using <a href="https://twitter.com/FastlaneTools" target="_blank">@FastlaneTools</a> sooner.<br>This is 🔥🔥🔥!
</div>
<span class="tweets__end-quote-laptop">
<img src="/assets/images/quotation-mark.svg" alt="Quote">
</span>
<div class="tweets__signature">
<span class="tweets__logo"><img src="/assets/images/twitter-logo.svg" alt="Twitter logo"></span>
<b>@t_guidon</b> <span class="tweets__time-and-location">4:03 PM - 27 Jun 2017</span></div>
</div>
<div class="tweets__item">
<span class="tweets__begin-quote-laptop">
<img src="/assets/images/quotation-mark.svg" alt="Quote">
</span>
<div class="tweets__quote">
I love <a href="https://twitter.com/FastlaneTools" target="_blank">@FastlaneTools</a> ❤️<br>Generating all the screenshots for iTunes Connect with one line of code feels like cheating.
</div>
<span class="tweets__end-quote-laptop">
<img src="/assets/images/quotation-mark.svg" alt="Quote">
</span>
<div class="tweets__signature">
<span class="tweets__logo"><img src="/assets/images/twitter-logo.svg" alt="Twitter logo"></span>
<b>@haawa799</b> <span class="tweets__time-and-location">8:42 AM - 11 Jun 2017</span></div>
</div>
<div class="tweets__item">
<span class="tweets__begin-quote-laptop">
<img src="/assets/images/quotation-mark.svg" alt="Quote">
</span>
<div class="tweets__quote">
Software like <a href="https://twitter.com/FastlaneTools" target="_blank">@FastlaneTools</a> makes me glad to build stuff. Still kinda shocked that it's possible to send builds to Testflight w/ 1 command
</div>
<span class="tweets__end-quote-laptop">
<img src="/assets/images/quotation-mark.svg" alt="Quote">
</span>
<div class="tweets__signature">
<span class="tweets__logo"><img src="/assets/images/twitter-logo.svg" alt="Twitter logo"></span>
<b>@austinlouden</b> <span class="tweets__time-and-location">10:31 PM - 20 Feb 2017</span></div>
</div>
</div>
<span class="tweets__end-quote-mobile">
<img src="/assets/images/quotation-mark.svg" alt="Quote">
</span>
</div>
</section>
<section id="how-it-works" class="section works">
<div class="section__wrapper">
<h2 class="section__headline">How fastlane works</h2>
<div class="section__summary">
Fastlane lets you configure lanes to support your team’s deployment workflows. Use a single command to run a lane.
</div>
<hr />
<header class="typeahead">
<h2>fastlane <span class="typeahead__target"></span></h2>
</header>
<div class="animation">
<div class="animation__window">
<header>•••</header>
<code class="code">
<article class="code__block" id="code-beta">
<div class="current-loc"></div>
<div class="line line--first inactive">
<span class="line--def">lane</span>
<span class="line--sym">:beta</span>
<span class="line--op">do</span>
</div>
<div class="code__indent">
<div class="line line--fn inactive">increment_build_number</div>
<div class="line line--fn inactive">build_app</div>
<div class="line line--fn inactive">upload_to_testflight</div>
</div>
<div class="line inactive">
<span class="line--end" id="emoji">end</span>
</div>
</article>
<article class="code__block" id="code-appstore">
<div class="current-loc"></div>
<div class="line line--first inactive">
<span class="line--def">lane</span>
<span class="line--sym">:appstore</span>
<span class="line--op">do</span>
</div>
<div class="code__indent">
<div class="line line--fn inactive">capture_screenshots</div>
<div class="line line--fn inactive">build_app</div>
<div class="line line--fn inactive">upload_to_app_store</div>
<div class="line line--fn inactive">slack</div>
</div>
<div class="line inactive">
<div class="line--end">end</div>
</div>
</article>
</code>
</div>
<aside class="animation__steps">
<ol class="steps" id="steps-beta">
<li>
<div class="steps__ctn">
<div class="steps__icon" style="background: #3F40F8">#️⃣</div>
<p>Increment build number</p>
</div>
</li>
<li>
<div class="steps__ctn">
<div class="steps__icon" style="background: #D8D8D8">💪</div>
<p>Build your app</p>
</div>
</li>
<li>
<div class="steps__ctn">
<div class="steps__icon">
<img src="/assets/images/fastlane.png">
</div>
<p>Upload to TestFlight</p>
</div>
</li>
</ol>
<ol class="steps" id="steps-appstore">
<li>
<div class="steps__ctn">
<div class="steps__icon" style="background: #3F40F8">📸</div>
<p>Capture screenshots</p>
</div>
</li>
<li>
<div class="steps__ctn">
<div class="steps__icon" style="background: #BD69F6">💪</div>
<p>Build your app</p>
</div>
</li>
<li>
<div class="steps__ctn">
<div class="steps__icon" style="background: #D8D8D8">⬆️</div>
<p>Upload to store</p>
</div>
</li>
<li>
<div class="steps__ctn">
<div class="steps__icon">
<img src="/assets/images/slack.png">
</div>
<p>Notify slack</p>
</div>
</li>
</ol>
</aside>
</div>
<h2>See it in action - getting started with fastlane</h2>
<div class="video-modal">
<img src="https://i.ytimg.com/vi/wOtANfkh2bI/maxresdefault.jpg">
</div>
<div class="video-modal__media">
<header class="video-modal__close">
<span><img src="/assets/images/ic_close.png" width="18"></span>
</header>
<div id="yt-player"></div>
</div>
</div>
</section>
<section id="contribute" class="section contribute">
<div class="section__wrapper">
<h2 class="section__headline">Become a fastlane contributor</h2>
<div class="section__summary">
The strong open source community that contributes to fastlane is part of
what makes it great. With over 700 contributors, we're building the most
powerful set of tools for deploying mobile apps. Check out our GitHub
repository for information on how to
<a
ga-on="click"
ga-event-category="Contributing"
ga-event-label="Contributing"
target="_blank"
href="https://github.com/fastlane/fastlane/blob/master/CONTRIBUTING.md">
contribute</a> and to become a
<a
ga-on="click"
ga-event-category="Contributing"
ga-event-label="Core Contributing"
target="_blank"
href="https://github.com/fastlane/fastlane/blob/master/CORE_CONTRIBUTOR.md">
core contributor</a>.
</div>
<a
target="_blank"
ga-on="click"
ga-event-category="Get Started"
ga-event-label="Get Started"
class="button button--contribute contribute__cta"
href="https://docs.fastlane.tools/">Get started with fastlane</a>
</div>
</section>
<footer class="footer">
<div class="footer__wrapper">
<hr>
<div class="footer__flex">
<div class="footer__logo">
<a target="_blank" href="https://developers.google.com/"><img class="footer__logo__img" src="/assets/images/google-developers-lockup-color.svg" alt="Google Developers logo"></a>
</div>
<span class="footer__copyright">© 2022 Google, Inc. All Rights Reserved</span>
<nav>
<ul>
<li><a target="_blank" href="https://www.google.com/policies/terms/">Terms</a></li>
<li><a target="_blank" href="https://www.google.com/policies/privacy/">Privacy Policy</a></li>
<li><a target="_blank" href="https://www.google.com/policies/technologies/cookies/">Cookies</a></li>
</ul>
</nav>
</div>
</div>
</footer>
<!-- Used for verifying profile metadata on Mastodon -->
<a style="display: none;" rel="me" href="https://mastodon.social/@joshdholtz"></a>
<script src="//www.gstatic.com/external_hosted/jquery2.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/1.20.3/TimelineMax.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/1.20.3/TweenMax.min.js"></script>
<script src="//www.gstatic.com/external_hosted/slick/slick.min.js"></script>
<script src="https://cdn.jsdelivr.net/particles.js/2.0.0/particles.min.js"></script>
<script src="/assets/js/main.min.js"></script>
</body>
</html>