So with an empty Fastfile, let's start by creating our first lane, which we will label release. In the next chapter, we will start working on a separate release for beta releases. Our first lane will only have one action for now, and that's produce. We will add more to it in future chapters.
Enter the following in your Fastfile:
lane :release do
produce(
username: 'your@email_address.com',
app_identifier: 'com.doronkatz.firefox',
app_name: 'Firefox for iOS',
language: 'English',
app_version: '1.0',
team_name: 'Doron Katz' # only necessary when in multiple teams
)
end
Run the lane by entering the following:
fastlane release
And that's it! We started creating a simple but functional lane. We can test our very first lane. ...