diff --git a/.github/workflows/deploy_pages.yml b/.github/workflows/deploy_pages.yml index 20b3441..7909dff 100644 --- a/.github/workflows/deploy_pages.yml +++ b/.github/workflows/deploy_pages.yml @@ -28,19 +28,15 @@ jobs: - name: Checkout uses: actions/checkout@v3 - - name: Install pnpm - uses: pnpm/action-setup@v2 - with: - version: 8 - name: Install Node.js uses: actions/setup-node@v3 with: node-version: 18 - cache: pnpm + cache: npm - name: Install dependencies - run: pnpm i + run: npm i - name: Setup Pages uses: actions/configure-pages@v3 @@ -48,7 +44,7 @@ jobs: static_site_generator: "sveltekit" - name: Build site - run: pnpm run build + run: npm run build - name: Upload artifact uses: actions/upload-pages-artifact@v1