Skip to content

Commit

Permalink
Fix workflow and filename case sensitivity
Browse files Browse the repository at this point in the history
  • Loading branch information
Rami Ouanes committed Nov 9, 2024
1 parent e4e965c commit e59968e
Showing 1 changed file with 2 additions and 22 deletions.
24 changes: 2 additions & 22 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit e59968e

Please sign in to comment.