Closed pschloss closed 1 month ago
Of course I managed to figure it out after posting the issue - sorry! I modified the actions/checkout
step of the workflow to add submodules: true
like below...
...
steps:
- uses: actions/checkout@v4
with:
submodules: true
...
I have a submodule (
resources/
) as part of my Jekyll repo that is referenced in the_config.yaml
file:Unfortunately when the
jekyll-deploy-action
runs, it does not seem to be building with the submodule. The rendered site is not getting the styling that I had been getting when building off of themaster
branch with the submodule. It should look a lot more like the rest of the site, which is styled using the sass files inresources/
.Any ideas what I might be missing to get the site to build using
resources/
?