diff --git a/.github/workflows/astro-build.yml b/.github/workflows/astro-build.yml
index ef10cfb..49df592 100644
--- a/.github/workflows/astro-build.yml
+++ b/.github/workflows/astro-build.yml
@@ -47,4 +47,7 @@ jobs:
 
       # 7. Deploy
       - name: Deploy to GitHub Pages
-        uses: actions/deploy-pages@v1
\ No newline at end of file
+        uses: actions/deploy-pages@v1
+        with:
+          branch: main
+          folder: dist
\ No newline at end of file
diff --git a/astro.config.mjs b/astro.config.mjs
index 555daf3..d44e2ef 100644
--- a/astro.config.mjs
+++ b/astro.config.mjs
@@ -28,6 +28,6 @@ export default defineConfig({
   ],
   output: "hybrid",
   adapter: vercel(),
-  outDir: "./docs",
+  outDir: "dist",
   site: "https://arielfalcon.me",
 });