From 1b2bc6b37f6f3bb65dcafa21722d2e1d7a5a6129 Mon Sep 17 00:00:00 2001 From: sajjad Date: Fri, 24 Nov 2023 16:46:16 +0330 Subject: [PATCH] chore: Update workflow for Nuxt.js 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. --- .github/workflows/nuxtjs.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/nuxtjs.yml b/.github/workflows/nuxtjs.yml index d696db1..eef93d4 100644 --- a/.github/workflows/nuxtjs.yml +++ b/.github/workflows/nuxtjs.yml @@ -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: