Answer a question

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 https://jatinkumarg.github.io/personal-portfolio, run:

  npm run deploy


> personal-portfolio@0.1.0 deploy C:\react-projects\personal-portfolio
> gh-pages -d build

Cloning into 'node_modules\gh-pages\.cache\git@github.com!jatinkumarg!personal-portfolio.git'...
git@github.com: Permission denied (publickey).
fatal: Could not read from remote repository.

Please make sure you have the correct access rights
and the repository exists.

npm ERR! code ELIFECYCLE
npm ERR! errno 1
npm ERR! personal-portfolio@0.1.0 deploy: `gh-pages -d build`
npm ERR! Exit status 1
npm ERR!
npm ERR! Failed at the personal-portfolio@0.1.0 deploy script.
npm ERR! This is probably not a problem with npm. There is likely additional logging output above.

npm ERR! A complete log of this run can be found in:
npm ERR!     C:\Users\jatin\AppData\Roaming\npm-cache\_logs\2019-07-23T04_40_54_788Z-debug.log
  • I have already set-up and tested my ssh key, it works fine.
  • There is only one remote url i.e. origin(SSH)

This is my package.json

{
  "name": "personal-portfolio",
  "version": "0.1.0",
  "homepage": "https://jatinkumarg.github.io/personal-portfolio",
  "dependencies": {
    "jquery": "^3.4.1",
    "json-loader": "^0.5.7",
    "react": "^15.5.4",
    "react-dom": "^15.5.4"
  },
  "devDependencies": {
    "gh-pages": "^1.0.0",
    "react-scripts": "1.0.1"
  },
  "scripts": {
    "predeploy": "npm run build",
    "deploy": "gh-pages -d build",
    "start": "react-scripts start",
    "build": "react-scripts build",
    "test": "react-scripts test --env=jsdom",
    "eject": "react-scripts eject"
  }
}

At this point, I have no idea what's wrong. Can anyone please help me with this issue?

Answers

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
Logo

ModelScope旨在打造下一代开源的模型即服务共享平台,为泛AI开发者提供灵活、易用、低成本的一站式模型服务产品,让模型应用更简单!

更多推荐