diff --git a/docs/src/pages/guides/deploy.md b/docs/src/pages/guides/deploy.md index 50671f6f07..73c4ee3e37 100644 --- a/docs/src/pages/guides/deploy.md +++ b/docs/src/pages/guides/deploy.md @@ -347,6 +347,24 @@ You can deploy your Astro project on [Render](https://render.com/) following the - **publish directory:** `dist` 5. Click the **Create Static Site** button +## Buddy + +You can deploy your Astro project using [Buddy](https://buddy.works). To do so you'll need to: + +1. Create a **Buddy** account [here](https://buddy.works/sign-up). +2. Create a new project and connect it with a git repository (GitHub, GitLab, BitBucket, any private Git Repository or you can use Buddy Git Hosting). +3. Add a new pipeline. +4. In the newly created pipeline add a **[Node.js](https://buddy.works/actions/node-js)** action. +5. In this action add: + + ```node + npm install + npm run build + ``` + +6. Add a deployment action - there are many to choose from, you can browse them [here](https://buddy.works/actions). Although their can settings differ, remember to set the **Source path** to `dist`. +7. Press the **Run** button. + ## Credits This guide was originally based off [Vite](https://vitejs.dev/)’s well-documented static deploy guide.