Hi everyone!
I am trying to deploy some xaringan to Github pages and it doesn't seem to be working. I've completed the following steps:
-
Create a GitHub repository, render the presentation to HTML, and push all of the files to the repository
a. repo:https://github.com/mjfrigaard/2021-07-asu-swc-data-structures
b. html:https://github.com/mjfrigaard/2021-07-asu-swc-data-structures/blob/main/Index.html
-
Create a branch entitled
gh-pages
a.https://github.com/mjfrigaard/2021-07-asu-swc-data-structures/tree/gh-pages
-
Rename the html file from the name of the .Rmd file (but ending in .html) to
index.html
. This is namedindex.html
in both branches:
a. main:https://github.com/mjfrigaard/2021-07-asu-swc-data-structures/blob/main/Index.html
b. gh-pages:https://github.com/mjfrigaard/2021-07-asu-swc-data-structures/blob/gh-pages/Index.html
-
Turn on GitHub Pages and set it to the
gh-pages
branch.
However, when I click on the link from the "Pages" option (https://mjfrigaard.github.io/2021-07-asu-swc-data-structures/
), I get the 404 error. I can see the slides when I manually add the index to the url https://mjfrigaard.github.io/2021-07-asu-swc-data-structures/Index.html
, but shouldn't this be unnecessary?
Thank you in advance!