From 25527f5a21aa14f02fe58c7e00b98198b39dcf11 Mon Sep 17 00:00:00 2001 From: ultrablob Date: Thu, 17 Apr 2025 19:37:22 -0400 Subject: [PATCH] more ci fixes (forgot to actually add a build step) --- .github/workflows/deploy.yml | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index b268c3b..aaaab6c 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -37,13 +37,18 @@ jobs: uses: pnpm/action-setup@v4 with: version: 10 - - name: Use Node.js ${{ matrix.node-version }} + + - name: Setup node.js uses: actions/setup-node@v4 with: - node-version: ${{ matrix.node-version }} + node-version: lts/* cache: 'pnpm' + - name: Install dependencies run: pnpm install + + - name: Build site + run: pnpm run build - name: Upload Build uses: https://code.forgejo.org/forgejo/upload-artifact@v4 @@ -53,3 +58,4 @@ jobs: path: './dist' retention-days: 3 overwrite: true + compression-level: 9 # maximum compression