From 80c42123895d2b5b7959f7f55d01f4c91da990c1 Mon Sep 17 00:00:00 2001 From: Moshe Plotkin Date: Thu, 29 Feb 2024 12:20:06 -0500 Subject: [PATCH] 2nd --- .github/workflows/static.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/static.yml b/.github/workflows/static.yml index 740aa68..a2494aa 100644 --- a/.github/workflows/static.yml +++ b/.github/workflows/static.yml @@ -32,15 +32,20 @@ jobs: uses: actions/setup-node@v2 with: node-version: '20' + - name: Install dependencies run: npm install + working-directory: ./client + - name: Build run: npm run build + working-directory: ./client + - name: Archive production artifacts uses: actions/upload-artifact@v2 with: name: dist - path: dist + path: client/dist retention-days: 1 # Deploy to GitHub Pages deploy: