I'm trying to publish a stock vue project that created by following command;
vue create test
And I'm following the steps which is on the Vue's official website deployment page.
I'm having a problem when I try to run that command;
bash deply.sh
It builds perfectly but after that I get the following;
Initialized empty Git repository in /Users/muratcansenturk/test/dist/.git/
[master (root-commit) 3f9dbf9] deploy
10 files changed, 28 insertions(+)
create mode 100644 css/app.3ed01e45.css
create mode 100644 favicon.ico
create mode 100644 img/logo.82b9c7a5.png
create mode 100644 index.html
create mode 100644 js/about.078d8f6d.js
create mode 100644 js/about.078d8f6d.js.map
create mode 100644 js/app.db0cb1ce.js
create mode 100644 js/app.db0cb1ce.js.map
create mode 100644 js/chunk-vendors.4a2cfde4.js
create mode 100644 js/chunk-vendors.4a2cfde4.js.map
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.
Because of that problem I haven't been able to publish any kind of project on Github Pages.
Before that problem I just run npm run build then commit files to Github and open on gh-pages successfully.
Also my repo is here.