diff --git a/.github/workflows/deploy_page.yml b/.github/workflows/deploy_page.yml index f5b3171..8e8b161 100644 --- a/.github/workflows/deploy_page.yml +++ b/.github/workflows/deploy_page.yml @@ -16,17 +16,18 @@ jobs: - name: Set up Node.js uses: actions/setup-node@v3 with: - node-version: '22.x' # Use the version of Node.js your project needs + node-version: 22 cache: 'npm' - - name: Install dependencies - run: npm ci - - name: Build project - run: npm run predeploy + run: + npm run predeploy + npm ci - name: Upload build artifacts uses: actions/upload-pages-artifact@v1 # This stores the build output + with: + path: $GITHUB_WORKSPACE/build deploy: needs: build