I have a Github workflow file with a checkout action that looks something like this:
name: Build project
on:
workflow_dispatch:
# Allows for manual build trigger
jobs:
buildForAllSupportedPlatforms:
name: Build for ${{ matrix.targetPlatform }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
submodules: true
This does the logical thing, it checks out the submodules with something like submodule update --init --force
. Here's my question - How do I make all the submodules check out on the master branch?