1

I have created the portfolio website using HTML5 and uploaded the respective files in the GitHub with new repository, but I cannot able to view the url link like (it is published at...) shown in YouTube videos.

I searched GitHub pages under the "Code and Automation" tab, still I cannot able to view the URL.

Can somebody please help me where to view my portfolio?

VonC
  • 1,262,500
  • 529
  • 4,410
  • 5,250
Sneha
  • 11
  • 1
  • IIRC your repository must be called `.github.io` AND must be public AND you must publish `index.html` + artefacts to the master branch, OR if your repo name is not `.github.io`, then you must create a `gh-pages` branch AND the repo must be public AND you must publish `index.html` + artefacts to the `gh-pages` branch. Also double check that you have enabled GitHub pages in the settings. For more information, check out the GitHub Pages tutorial: https://pages.github.com/ – Matthew Layton Aug 31 '22 at 05:28

1 Answers1

0

Note: GitHub Pages now uses Actions by default

It means that, instead of configuring a publication source (a branch or docs/ folder), you can add in a .github/workflows (inside your repository) a actions/starter-workflows pages/static.yml in order to publish your static HTML5 pages.

VonC
  • 1,262,500
  • 529
  • 4,410
  • 5,250