Skip to content

Commit

Permalink
chore: Update workflow for Nuxt.js
Browse files Browse the repository at this point in the history
Updated the Nuxt.js workflow to use the latest version (v3) of the 'actions/upload-artifact' action. Also corrected the artifact path to point to the 'frontend/dist' directory, ensuring the correct deployment of the frontend.
  • Loading branch information
sajjadth committed Nov 24, 2023
1 parent 7772b0f commit 1b2bc6b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/nuxtjs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -78,10 +78,10 @@ jobs:
$(npm bin)/nuxt generate
- name: Upload artifact
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: frontend-dist
path: ./dist
path: ./frontend/dist

# Deployment job
deploy:
Expand Down

0 comments on commit 1b2bc6b

Please sign in to comment.