martinthomson / i-d-template

A template for IETF internet draft git repositories
Other
207 stars 182 forks source link

Error pushing to gh-pages #369

Closed peterthomassen closed 1 year ago

peterthomassen commented 1 year ago

This build fails with:

git -C /tmp/ghpages80 push -qf https://****@github.com/johanix/draft-johani-tld-zone-pipeline gh-pages
make[1]: *** [lib/ghpages.mk:127: ghpages] Error 1
make: *** [lib/ghpages.mk:121: ghpages] Error 2

It's unclear why that failure occurs (it appears to be hidden behind the -q flag). Do you have any insights?

Thank you for this great tool.

@johanix

martinthomson commented 1 year ago

The only hint I can provide is to check in the repository settings. It is possible that your workflow permissions are set to read-only.

image

(The -q flag is unfortunately necessary. git tends to broadcast the token we provide if it is allowed to speak.)

martinthomson commented 1 year ago

I've updated the instructions on the template repository to provide a link to this setting. I can't change it for you, but it should be easy enough to follow from there.

peterthomassen commented 1 year ago

Thank you!