From 759cf7e10daf42975a588e5b128ada639c5d346d Mon Sep 17 00:00:00 2001 From: "Storm B. Heg" Date: Sun, 27 Oct 2024 19:14:22 +0100 Subject: [PATCH] Fix publish working directory --- .github/workflows/publish.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index b6e8786..a046127 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -20,10 +20,12 @@ jobs: node-version: 20 - name: Install Node dependencies + working-directory: ./client run: | npm ci - name: Compile JavaScript + working-directory: ./client run: | npm run build