-
DescriptionI wanted to publish my site on github pages and it did publish but the command is still loading in my terminal saying: Any solution for this? |
Beta Was this translation helpful? Give feedback.
Replies: 6 comments 10 replies
-
Could you share a small self-contained "working" (reproducible) example to work with, i.e., a complete Quarto document or a Git repository? Thanks. Unfortunately, without any information on your environment or document, there is absolutely nothing we can do. You can share a Quarto document using the following syntax, i.e., using more backticks than you have in your document (usually four ````qmd
---
title: "Reproducible Quarto Document"
format: html
---
This is a reproducible Quarto document using `format: html`.
It is written in Markdown and contains embedded R code.
When you run the code, it will produce a plot.
```{r}
plot(cars)
```
The end.
```` |
Beta Was this translation helpful? Give feedback.
-
I am building a blog with Quarto. What pieces should I share or should I share the whole project? |
Beta Was this translation helpful? Give feedback.
-
In case of publishing, I understand this is hard to share an exact example. This step you are blocked in is the last one waiting for the website to be available and loaded so that we can open it in the browser safely. This means that your website should already be push into the Next step is that Github should have deployed it to its If it is not deployed, then one thing is to check the repo configuration to see if you correctly followed the recommandation Github pages should be deployed from Source and from the If you can share your repo, we can try having a look and see if we see anything unusual. Hope it helps. |
Beta Was this translation helpful? Give feedback.
-
I think it is pushed to Here is the repo: |
Beta Was this translation helpful? Give feedback.
-
I fixed the problem. I deleted the blog locally and the repo from GitHub as well. I re-initialized it again and used Thanks, @mcanouil, @JosiahParry and @cderv for your time. I really appreciate it. |
Beta Was this translation helpful? Give feedback.
-
I experienced the same issue with quarto 1.5.57, I really didn't want to remove the repo, and I've found the solution! In my case, I had to specify the Maybe it helps someone, cheers! |
Beta Was this translation helpful? Give feedback.
I fixed the problem. I deleted the blog locally and the repo from GitHub as well. I re-initialized it again and used
quarto publish gh-pages
.Thanks, @mcanouil, @JosiahParry and @cderv for your time. I really appreciate it.