Skip to content

Commit

Permalink
does not show node_modules
Browse files Browse the repository at this point in the history
  • Loading branch information
robertotcestari committed Jun 13, 2024
1 parent d2ae29e commit dde96e2
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,11 @@ jobs:
- name: Build Projects
run: pnpm -r run build

- name: List All Files After Build
run: find . -type f -print
- name: List All Files After Build (excluding node_modules)
run: find . -type d -name node_modules -prune -o -type f -print

- name: List Directories After Build
run: find . -type d -print
- name: List Directories After Build (excluding node_modules)
run: find . -type d -name node_modules -prune -o -type d -print

- name: Verify Specific Build Outputs
run: |
Expand Down Expand Up @@ -64,21 +64,21 @@ jobs:
name: build-artifacts
path: .

- name: List All Files after downloading artifacts
run: find . -type f -print
- name: List All Files after downloading artifacts (excluding node_modules)
run: find . -type d -name node_modules -prune -o -type f -print

- name: Print working directory and list files
- name: Print working directory and list files (excluding node_modules)
run: |
echo "Working directory:"
pwd
echo "Content of repository root:"
ls -la
find . -type d -name node_modules -prune -o -type f -print
- name: Print matrix app path and list files in it
- name: Print matrix app path and list files in it (excluding node_modules)
run: |
echo "Matrix app path: ${{ matrix.app.path }}"
echo "Contents of the path:"
ls -la ${{ matrix.app.path }}
find ${{ matrix.app.path }} -type d -name node_modules -prune -o -type f -print
- name: Deploy with rsync
uses: burnett01/[email protected]
Expand Down

0 comments on commit dde96e2

Please sign in to comment.