Skip to content

Commit

Permalink
Update deployment workflow to include directory change
Browse files Browse the repository at this point in the history
  • Loading branch information
magland committed Jul 1, 2024
1 parent 9ec305a commit eb4c96f
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/vercel_deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,17 @@ jobs:
-
name: Create .vercel/project.json
run: |
cd gui
mkdir -p .vercel
echo '{"projectId":"${{ secrets.VERCEL_PROJECT_ID }}", "orgId":"${{ secrets.VERCEL_ORG_ID }}"}' > .vercel/project.json
-
name: Pull Vercel Environment Information
run: vercel pull --yes --environment=production --token=${{ secrets.VERCEL_TOKEN }}
run: |
cd gui
vercel pull --yes --environment=production --token=${{ secrets.VERCEL_TOKEN }}
-
name: Build Project Artifacts
run: vercel --prod --token=${{ secrets.VERCEL_TOKEN }}
run: |
cd gui
vercel --prod --token=${{ secrets.VERCEL_TOKEN }}

0 comments on commit eb4c96f

Please sign in to comment.