diff --git a/src/content/docs/en/guides/deploy/buddy.mdx b/src/content/docs/en/guides/deploy/buddy.mdx index 90409aeea00e9..14c6a6777b59d 100644 --- a/src/content/docs/en/guides/deploy/buddy.mdx +++ b/src/content/docs/en/guides/deploy/buddy.mdx @@ -4,6 +4,7 @@ description: How to deploy your Astro site to the web using Buddy. type: deploy i18nReady: true --- +import { Steps } from '@astrojs/starlight/components'; You can deploy your Astro project using [Buddy](https://buddy.works/), a CI/CD solution that can build your site and push it to many different deploy targets including FTP servers and cloud hosting providers. @@ -13,10 +14,15 @@ Buddy itself will not host your site. Instead, it helps you manage the build pro ## How to deploy + 1. [Create a **Buddy** account](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: ```bash @@ -25,4 +31,6 @@ Buddy itself will not host your site. Instead, it helps you manage the build pro ``` 6. Add a deployment action — there are many to choose from, you can browse them in [Buddy’s actions catalog](https://buddy.works/actions). Although their settings can differ, remember to set the **Source path** to `dist`. + 7. Press the **Run** button. +