Skip to content

Commit

Permalink
fix: production build action
Browse files Browse the repository at this point in the history
  • Loading branch information
sirpy committed Jul 10, 2024
1 parent 7a360e9 commit 1989540
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,12 +22,14 @@ jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
cache: yarn
- run: yarn install --immutable
- run: yarn build:contracts
- run: yarn build:sdk
- run: yarn vercel pull --yes --environment=production --token=${{ secrets.VERCEL_TOKEN }}
- run: yarn vercel build --prod --token=${{ secrets.VERCEL_TOKEN }}
- run: yarn vercel deploy --prod --prebuilt --token=${{ secrets.VERCEL_TOKEN }}

0 comments on commit 1989540

Please sign in to comment.