Skip to content
This repository has been archived by the owner on Feb 13, 2024. It is now read-only.

tscharke/fastlaneInActions

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

24 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Badge

The idea is to build and ship a React-Native-App (iOS and Android*) with Fastlane and GitHub-Actions.

Or in simpler words: Using GitHub-Actions as a CI for a React-Native-App's.

I documented my way to get this goal here.

*Note: Currently the React-Native-App is built and ship for iOS only 🤷‍

TOC

Prerequisites

Creating a certificate and identifier

The next steps are a walk through at Apple's Developer Account-Platform inside the section Certificates, Identifiers & Profiles.

  1. Create a new certificate of type iOS Development. If you already own one, then this step is optional.

  2. Create a new identifier with following properties:

    Type Value Comment
    Platform iOS, tvOS, watchOS Required
    Description FastlaneInActionsApp Optional, choose a name you like
    Bundle ID de.dermeer.van.fastlaneInActions Required, cause we need exactly this APP_IDENTIFIER
    Capabilities Use the defaults
  3. The profile we will automatically create with fastlane on the local machine.

Creating a profile with fastlane

Fastlane match

We use fastlane's match to create and manage all required certificates & provisioning profiles and stores them in a separate git repository.

With this, match is a implementation of the codesigning.guide concept that you should read through unconditionally!

So you have to create such a certificate git repository first.

Create a certificate git repository

You can create your certificate repository on GitHub and Bitbucket. I use GitHub myself, so that I also briefly describe the way how to set it up for GitHub here:

  1. Open https://github.com/new.
  2. Choose a repository name (e.g certificates).
  3. Make sure it's a private repository.
  4. Do not initialize this repository with a readme nor a license.
  5. Create the repository.

And there's one last step…To give fastlane's match access to this repository you've to create a Personal access tokens at GitHub.

Create/Generate a new token with a name of your choise and select the scope repo only.

The URI to your certificate repository

Keep the generated token, as we use it to create the url to your certificate repository.

The URL for fastlane's match follow this pattern: https://{token}@{url to your repository}. Means…

  • Copy the https-uri of your above created repository 👉 remember? (e.g. https://github.com/johndoe/certificates.git).
  • Create the url with aboves pattern, your token and the url of your repository.

A typcial url for fastlane's match looks like this: https://4711@github.com/johndoe/certificates.git

Run match and create & store your certificates & provisioning profiles

With this setup we're prepared to use fastlane's match on your local machine to create all missing certificates & provisioning profiles and store them in your personal and private certificate repository.

You can now…

  • open a terminal,
  • moving to the folder in which you checked out this repository,
  • running fastlane match development.

During this process fastlane's match ask you for some data. It needs the url to the certificate repository (IMPORTANT: use the https-url with token), your Apple Id and an APP_IDENTIFIER (in our case de.dermeer.van.fastlaneInActions).

If the process finnished it stored all newly created certificates & provisioning profiles at your private certificate repository and at Apple's Developer Account-Platform inside the section Profiles

Prepeare an App on Apple's Appstore-Connect

To ship an app it's importand to prepare the App or better setup information about the app at Apple's Appstore-Connect. For this setup we need an app with the euphonious names Fastlane in Actions-App.

This app is setup like this…

  • Open Apple's Appstore-Connect
  • Choose My Apps
  • Select the plus-sign (add-sign) on the top-left and
  • Select New App
  • Set the Platformes to iOS
  • Set the Name to Fastlane in Actions
  • Select your primary language (e.g. English)
  • Choose your Bundle-Id from above (e.g. de.dermeer.van.fastlaneInActions)
  • Set the SKU (e.g. de.dermeer.van.fastlaneInActions) 👉How to get sku number
  • Choose your prefer User accesses (e.g. access for all)

Build and ship the React-Native-App on your machine

Create a dotfile with personal Apple-Account-Credentials

If you've checkout this repository you'll find already a Matchfile and a Fastfile inside the fastlane folder. This files provides some information for fastlane. Which kind of information and more you can read in fastlane's docs or in special in fastlane's docs for match.

To automate the whole process and avoiding annoying questions from the fastlane CLI we will set the needed environment variables via a Dotfile with name .env. You can do it by running this bash command (replace the placeholder with your own values) inside the folder in which you checked out this repository:

cat <<EOF >> ./fastlane/.env
APP_IDENTIFIER=de.dermeer.van.fastlaneInActions
URL_TO_FASTLANE_CERTIFICATES_REPO={ THE URL TO YOUR CERTIFICATION-REPOSITORY* }
APPLE_ID={ YOUR PERSONAL APPLE-ID }
APPLE_TEAM_ID={ YOU PERSONAL TEAM-ID }
FASTLANE_APPLE_APPLICATION_SPECIFIC_PASSWORD={ APPLE-APPLICATION-SPECIFIC-PASSWORD }
APPLE_APP_ID={ ID OF YOUR APP }
MATCH_PASSWORD={ PASSWORD TO ENCRYPT THE CERTIFICATES-REPOSITORY}
EOF

* IMPORTANT: This is the https-url with token!!!

This creats your personal Dotfile ./fastlane/.env and you can modified as you like and needed.

Do NOT checkin this Dotfile. It's already listed in gitignore.

Build and ship app with fastlane

At this point you're well prepared and we can build and ship the React-Native-App with fastlane by running the command fastlane ios buildAndShip or simpler by running the script with yarn: yarn ios:buildAndShip.

If your setup was successful, at the end you will find an IPA-file and dSYM-file in folder ./fastlane/builds and a shiped build for TestFlight at Apple's Appstore Connect (in the section: My Apps -> Fastlane in Actions App -> TestFlight).

Run the React-Native-App on your machine

Running the React-Native-App on your machine is possible by using the React-Native CLI: react-native run-ios or by running the script with yarn: yarn ios:app.

It will starts the iOS-Simulator and will show the default "Welcome to React"-App:

Welcome to React

Build and ship the React-Native-App on GitHub

The idea on the goal of this project was to build and ship a React-Native-App with Fastlane on GitHub-Actions and therefor using GitHub as a CI.

You can see the result in the Actions-panel of this repository at GitHub 👉https://github.com/tscharke/fastlaneInActions/actions

Where is the magic

All magic to build and ship the React-Native-App with GitHub-Actions are exist in the Workflows yml-file .github/workflows/ci.yml and in the Fastfile.

An intruduction what GitHub-Actions are and how these can be used you find very well explained in the GitHub-Actions documentation.

Short what is being done here or better whats happend in our Workflows yml-file:

  1. Make sure what all runs on macOX.
  2. Install node (for this we use the predefined Action actions/setup-node).
  3. Checkout the current repository.
  4. Install all dependencies (yarn install).
  5. Run all test (yarn test).
  6. Run fastlane to build and ship our React-Native-App (yarn ios:buildAndShip).

If you wonder from where the fastlane comes? GithHub-Actions directly provided a fastlane for use (thanks to Jens N. for this tip 🙏). So it's not necessary to install ruby nor gems.

The Fastfile itself…

  1. Manage the certificates.
  2. Install all pods.
  3. Increments the build number.
  4. Builds the app.
  5. Ships the app.
  6. Push all changes (which were created by adjusting the build number) back to the repository.

Using this with your own repository

Feel free to clone this repository or simple copy the Workflows YML-File .github/workflows/ci.yml and the Fastfile and Matchfile from the [./fastlane]-folder (./fastlane).

As you can see - inside the Workflows YML-File - that we're sharing following environment-variables to the CI-System:

Name Value Description
APP_IDENTIFIER de.dermeer.van.fastlaneInActions
URL_TO_FASTLANE_CERTIFICATES_REPO SECRET The https-url (with token) to your personal and private certificate repository
MATCH_PASSWORD SECRET Password of your certificate repository
CI true
CI_KEYCHAIN_NAME CI_KEYCHAIN
CI_KEYCHAIN_PASSWORD SECRET Password for the internal used keychain. You may bet on any value you like
APPLE_ID SECRET Your personal Apple-ID
APPLE_TEAM_ID SECRET Your personal Apple-Team-ID
APPLE_APP_ID SECRET The unique created ID of your Fastlane in Actions-App. You can find this id at Apples's Appstore-Connect inside the section: My Apps -> Fastlane in Actions-App -> App Store -> App information -> Apple-ID
FASTLANE_APPLE_APPLICATION_SPECIFIC_PASSWORD SECRET Your Application-Sepcific-Password
GIT_BRANCH_NAME ${{ github.ref }} Sets automaticly the current branch (e.g. master)

Set some secrets on your repository

What is it with the SECRET marke values?

This are values you never share public and they're needed on your repository too. So please provide this environment-variables as GitHub-Secrets on your own repository.