I now use GitHub Actions to deploy this website (see my previous note about it) and last Monday (two days ago 😃) after I pushed I got an email saying the deployment failed and found the following error message in the console log:
|
|
Turns out this is because version 2 of checkout does not support submodule yet (see this issue report https://github.com/actions/checkout/issues/81) which I use to install my Hugo Theme. All I had to do was to use a previous version, so I replaced uses: actions/checkout@master
by uses: actions/checkout@v1.2.0
in my deploy.yaml
file:
|
|
Hope submodule soon will be supported soon in the new version!