diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index fd8c8b0..64bb4fa 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -30,6 +30,8 @@ jobs: uses: withastro/action@v2 - name: Upload artifact uses: actions/upload-pages-artifact@v3 + with: + path: dist deploy: needs: build runs-on: ubuntu-latest diff --git a/astro.config.ts b/astro.config.ts index 88b0ae5..aa5790d 100644 --- a/astro.config.ts +++ b/astro.config.ts @@ -41,5 +41,5 @@ export default defineConfig({ }, }, scopedStyleStrategy: "where", - outDir: "_site", + outDir: "dist", });