You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In CircleCI our docs-publish job is failing with this error:
$ gh-pages --dotfiles --message "[skip ci] Docs updates" --dist docs/_build/html
The "file" argument must be of type string. Received type undefined
Exited with code 1
This job only runs on master, so bors hasn't noticed it. This problem seems to have started recently. I'd guess it is because we don't actually pin a version of the gh-pages tool, and install it via npm install gh-pages@2. We should probably move this to package.json and manage it like all the other Node dependencies.
The text was updated successfully, but these errors were encountered:
In CircleCI our
docs-publish
job is failing with this error:Here is an example CI job: https://circleci.com/gh/mozilla/normandy/12787
This job only runs on master, so bors hasn't noticed it. This problem seems to have started recently. I'd guess it is because we don't actually pin a version of the
gh-pages
tool, and install it vianpm install gh-pages@2
. We should probably move this to package.json and manage it like all the other Node dependencies.The text was updated successfully, but these errors were encountered: