Skip to content

Commit

Permalink
πŸ–οΈ Update instructions
Browse files Browse the repository at this point in the history
- Add submodule advice (close #1)
  • Loading branch information
victoriadrake committed Mar 6, 2020
1 parent 4925c7c commit 16b6bda
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,8 @@ jobs:
uses: victoriadrake/hugo-remote@master
```
If your chosen Hugo theme is a submodule, you may need to get it explicitly in your workflow. See [#1](https://github.com/victoriadrake/hugo-remote/issues/1) for more information and an example.
See full instructions for [Configuring and managing workflows](https://help.github.com/en/actions/configuring-and-managing-workflows).
## Use the workflow YAML file directly
Expand Down

2 comments on commit 16b6bda

@kofemann
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Well, there is a simpler way of doing this

    steps:
      - name: πŸ›Ž Check out master
        uses: actions/checkout@master
        with:
          fetch-depth: 1
          submodules: true

@victoriadrake
Copy link
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Would you like to add that line to the example in the README?

Please sign in to comment.