$ bundle exec jekyll build
Configuration file: _config.yml
Source: foosite/
Destination: _site
Incremental build: disabled. Enable with --incremental
Generating...
GitHub Metadata: No GitHub API authentication could be found.
Some fields may be missing or have incorrect data.
The sources of this error are many. What caused the error in my case? It is actually the combination of the two facts:
- I used the Jekyll SEO Tags plugin, and
- I did not include a description value in the
_config.yml
file.
After my adding a
description
map to the _config.yml
file, the problem went away, e.g.,$ cat _config.yml
...
description: this is my awesome site.
...
Hi, I don't think there needs to be a description, only to specify the plugins used in _config.yml and Gemfile
ReplyDelete