When I run following actions (that checkout repository with submodules and update),
- name: Checkout
uses: actions/checkout@v2
with:
ref: ${{ github.head_ref }}
submodules: 'recursive'
token: ${{ secrets.MY_PAT }}
following error has occurred.
Unable to find current origin/master revision in submodule path
This issue was fixed by fetch-depth: 0
option at checkout action.
Top comments (1)
Thank you ! I was struggling with error and your post provided the solution.
github.com/PrestaShop/devdocs-site...