Skip to content

Commit

Permalink
add loggin
Browse files Browse the repository at this point in the history
  • Loading branch information
robertotcestari committed Jun 13, 2024
1 parent 786cca4 commit 3792661
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,15 @@ jobs:
- run: pnpm -r run build

- name: Verify Build Output
run: ls -la ./apps/next-auth/dist/ && ls -la ./apps/teste/dist/
run: |
echo "Listing build directory for next-auth:"
ls -la ./apps/next-auth/dist/
echo "Listing build directory for teste:"
ls -la ./apps/teste/dist/
echo "Listing the entire apps directory:"
ls -la ./apps
echo "Checking if any dist directories are present within apps/*:"
find ./apps -type d -name dist -exec ls -la {} +
deploy:
runs-on: ubuntu-latest
Expand Down

0 comments on commit 3792661

Please sign in to comment.