I created a personal website and pushed to the code to GitHub then published it on GitHub pages and everything was working well.
I then switched the repo from public to private and as expected, the published GitHub pages site was not accessible.
Now I again switched the repo from private to public but now (>30 minutes since going public), I get a 404 whenever when attempting to access the site.
repository: https://github.com/wandesky/portfolio site: https://wandesky.github.io/portfolio/
I have tried giving the GitHub pages some time (>30 minutes) to see if the site will be back. I have also tried to launch GitHub pages from the command prompt (as I did when initially launching the site) but still, the site does not go live.
  "name": "wandesky_portfolio",
  "version": "1.0.0",
  "description": "Responsive portfolio website",
  "main": "index.js",
  "homepage": "https//wandesky.github.io/portfolio",
  "scripts": {
    "sass": "node-sass -w scss/ -o dist/css --recursive",
    "deploy": "gh-pages -d dist"
  },
  "author": "wandesky",
  "license": "MIT",
  "dependencies": {
    "gh-pages": "^2.0.1",
    "node-sass": "^4.12.0"
  }
}
I expect that switching the repo back to public will make the site accessible.
