gh-pages -d build fails on 'npm run deploy'

后端 未结 2 575
猫巷女王i
猫巷女王i 2021-01-16 06:30

I am trying to deploy my react app to the GitHub pages but I have encountered the following error:

The build folder is ready to be deployed.
To publish it at         


        
2条回答
  •  时光取名叫无心
    2021-01-16 07:05

    You need the PRO plan to use GitHub pages on a private repository.

    You can try adding a SSH identity in ~/.ssh/config

    Host github.com
      HostName github.com
      User git
      IdentityFile /Users/myusername/.ssh/my_github_ssh_private_key_registered_on_github
    

提交回复
热议问题