About Deploying a project. #200966
-
🏷️ Discussion TypeQuestion 💬 Feature/Topic AreaARC (Actions Runner Controller) Discussion Detailshow we can deploy a websites or any project in GitHub? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
|
You just push your project to a GitHub repository, then enable GitHub Pages in the repository settings (for static sites). If it's a full-stack app, connect the repo to a hosting service like Vercel, Netlify, or Render, and it'll deploy automatically from GitHub. |
Beta Was this translation helpful? Give feedback.
-
|
To deploy a site via GitHub Pages:Name your main file index.html.Create a Public repository on GitHub.Upload your static files to it.Go to Settings, then click Pages.Select the main branch under Build/deployment.Click Save to launch your live site URL. |
Beta Was this translation helpful? Give feedback.
You just push your project to a GitHub repository, then enable GitHub Pages in the repository settings (for static sites).
Go to Repository Settings → Pages → Select the main branch and /root folder → Save → Your site is live.
If it's a full-stack app, connect the repo to a hosting service like Vercel, Netlify, or Render, and it'll deploy automatically from GitHub.