From e59968ec6e5be79c4c7987e495f0d1fd7c9902f3 Mon Sep 17 00:00:00 2001 From: Rami Ouanes Date: Sat, 9 Nov 2024 12:52:07 +0100 Subject: [PATCH] Fix workflow and filename case sensitivity --- .github/workflows/deploy.yml | 24 ++---------------------- 1 file changed, 2 insertions(+), 22 deletions(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 7967a2b..e3b2804 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -25,31 +25,11 @@ jobs: with: node-version: '20' - - name: Debug directory structure before install - run: | - echo "Current working directory:" - pwd - echo "\nDirectory contents:" - ls -la - echo "\nRepository root contents:" - ls -la $GITHUB_WORKSPACE - - name: Install dependencies - run: | - npm install - npm install -g vite - - - name: Debug directory structure after install - run: | - echo "src directory contents:" - ls -la src/ - echo "\nComponents directory contents:" - ls -la src/components/ + run: npm install - name: Build - run: | - export NODE_OPTIONS="--max_old_space_size=4096" - vite build + run: npm run build env: CI: false