diff options
author | 2021-10-12 17:56:58 +0200 | |
---|---|---|
committer | 2021-10-12 11:56:58 -0400 | |
commit | 0816ac0636d245fab01b70b8b516a41ab25f75cb (patch) | |
tree | 3c48eeffe26fcb2c35984eb2effae47a97a7eea3 /docs/src/pages/guides | |
parent | 3b54ddabcad17e4da3f045947a639bc40b6aefdf (diff) | |
download | astro-0816ac0636d245fab01b70b8b516a41ab25f75cb.tar.gz astro-0816ac0636d245fab01b70b8b516a41ab25f75cb.tar.zst astro-0816ac0636d245fab01b70b8b516a41ab25f75cb.zip |
Documentation for deploying with buddy.works (#1506)
* Added documentation for deploying to Buddy
* Fix to make it more clear
Diffstat (limited to 'docs/src/pages/guides')
-rw-r--r-- | docs/src/pages/guides/deploy.md | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/docs/src/pages/guides/deploy.md b/docs/src/pages/guides/deploy.md index 50671f6f0..73c4ee3e3 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. |