Skip to content

Commit

Permalink
Tweak deployment scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
krzkaczor committed Oct 29, 2023
1 parent 2249e42 commit 6d3378e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ jobs:
command: |
cd packages/vscode-host/dist
vercel pull --yes --environment=preview --token=${{ secrets.VERCEL_TOKEN }}
vercel build --token=${{ secrets.VERCEL_TOKEN }} # creates vercel output directory
vercel build --prod --token=${{ secrets.VERCEL_TOKEN }} # creates vercel output directory
cp -R ./node_modules ./.vercel/output/static/ # force add node_modules to output directory
Expand All @@ -83,7 +83,7 @@ jobs:
command: |
cd packages/entrypoint/dist
vercel pull --yes --environment=preview --token=${{ secrets.VERCEL_TOKEN }}
vercel build --token=${{ secrets.VERCEL_TOKEN }} # creates vercel output directory
vercel build --prod --token=${{ secrets.VERCEL_TOKEN }} # creates vercel output directory
cp -R ./node_modules ./.vercel/output/static/ # force add node_modules to output directory
Expand Down

0 comments on commit 6d3378e

Please sign in to comment.