Skip to content

Commit

Permalink
Add diagnostics to action
Browse files Browse the repository at this point in the history
  • Loading branch information
davidxw committed Aug 1, 2023
1 parent 1ab8b6b commit 4efd7fb
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions .github/workflows/open-ai-app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,13 +41,19 @@ jobs:
- name: 📦 Package Next application
run: |
cd ./site-deploy
zip Nextjs-site.zip ./* .next -qr
zip Nextjs-site.zip ./* .next -qr
- name: Diagnostics
run: |
ls ./src
ls ./src/.next
ls ./site-deploy
- name: ⬆️ Publish Next Application artifact
uses: actions/upload-artifact@v2
with:
name: Nextjs-site
path: ./src/site-deploy/Nextjs-site.zip
path: ./site-deploy/Nextjs-site.zip

deploy:
runs-on: ubuntu-latest
Expand Down

0 comments on commit 4efd7fb

Please sign in to comment.