GitHub Actions

Set up
Navigate to the Integration settings view
Select an app in the top left corner from the Switcher
Navigate to App Settings by clicking the gear icon (⚙️) at the top of the Timeline sidebar
Click on Integrations in the sidebar
Connect GitHub Actions
Find the GitHub Actions integration module under the CI/CD section
Click the Connect button. You’ll be taken through a standard GitHub app OAuth flow. (Or, you’ll be given the option to reuse the GitHub connection you already established when setting up GitHub for version control.)
GitHub redirects you back to Runway
Select the name of your repo from the list of options
Select the name of your Release Candidate workflow from the list of options
Optionally, enter the name of your release workflow (the one that generates the builds that you end up submitting to the App Store/Play Store) if it’s different than your Release Candidate workflow
Optionally, enter the name of the deploy branch on which your release workflows are triggered, if this branch is different than the branch your Release Candidate workflow is triggered on
For any of the above workflows, you can optionally enter workflow arguments (a.k.a. "inputs" or "trigger variables") as key-value pairs.
If you enter workflow arguments, Runway will pass them in calls to the GitHub API when you trigger builds from within Runway.
Runway can also filter the builds it fetches based on workflow arguments. This can be useful if you use the same workflow for multiple different build types and the specific build type that's built is determined by one or more workflow arguments. Note: because the GitHub API does not return workflow arguments in its build responses, you must inject your arguments into the workflow run name. Use the notation
key=value, e.g.pilot=Sullyorpilot='Sully B.'(wrap any keys or values that contain spaces in single quotes).
Triggering builds from Runway
In order to trigger builds from Runway, your GitHub Actions workflow will need to have workflow_dispatch configured. See GitHub’s documentation for more info.
Last updated
Was this helpful?