setup-fastlane

Solid

Set up Fastlane for iOS/macOS app automation

AI & Automation 37 stars 4 forks Updated 1 weeks ago MIT

Install

View on GitHub

Quality Score: 82/100

Stars 20%
53
Recency 20%
90
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

## Fastlane Setup (One-Time) ``` ┌─────────────────────────────────────────────────────────────────┐ │ ONE-TIME SETUP │ │ ══════════════ │ │ After this, you'll have: │ │ │ │ fastlane ios test → Run tests │ │ fastlane ios beta → Upload to TestFlight │ │ fastlane ios release → Submit to App Store │ │ │ │ Do this once per project. Takes ~10 minutes. │ └─────────────────────────────────────────────────────────────────┘ ``` ### Environment Check - Xcode CLI: !`xcode-select -p 2>/dev/null && echo "✓" || echo "✗ Run: xcode-select --install"` - Homebrew: !`brew --version 2>/dev/null | head -1 || echo "✗ Run: /bin/bash -c \"$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)\""` - Fastlane: !`fastlane --version 2>/dev/null | grep -o "fastlane [0-9.]*" | head -1 || echo "✗ Run: brew install fastlane"` ### Your Project - Project: !`find . -maxdepth 2 -name "*.xcodeproj" 2>/dev/null | head -1 || echo "None found"` - Workspace: !`find . -maxdepth 2 -name "*.xcworkspace" ! -path "*/.build/*" ! -path "*/xcodeproj/*" 2>/dev/null | head -1 || echo "None"` - Bundle ID: !`grep -r "PRODUCT_BUNDLE_IDENTIFIER" ...

Details

Author
greenstevester
Repository
greenstevester/fastlane-skill
Created
8 months ago
Last Updated
1 weeks ago
Language
N/A
License
MIT

Bundled in these plugins

Similar Skills

Semantically similar based on skill content — not just same category