From bc4fe3d048229cacdbddcf86a146f9f49f45806d Mon Sep 17 00:00:00 2001 From: tree Date: Mon, 12 Feb 2024 11:28:55 +0100 Subject: [PATCH] update workflow --- .github/workflows/deploy.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 03d0df2..a9b6626 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -29,7 +29,7 @@ jobs: deno-version: v1.x - name: Build bundle - run: make + run: make build - name: Setup node uses: actions/setup-node@v4 @@ -37,11 +37,11 @@ jobs: cache: npm cache-dependency-path: ./web/package-lock.json - - name: Web install - run: "cd web && npm install" - - - name: Web build - run: "cd web && npm run build" + - name: Build frontend + run: make frontend + + - name: Compile all together + run: make compile - name: Upload Pages Artifact # Must use v2 to avoid requiring `actions/deploy-pages@v4` or newer