fixed vercel build issues #201
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Deploy examples to Vercel | |
env: | |
VERCEL_TOKEN: ${{ secrets.VERCEL_TOKEN }} | |
VERCEL_ORG_ID: ${{ secrets.VERCEL_ORG_ID }} | |
on: | |
push: | |
branches: | |
- main | |
- web_js_example_improvements | |
jobs: | |
deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Set up Node.js | |
uses: actions/setup-node@v4 | |
- name: Deploy React SDK example to Vercel | |
run: | | |
cd examples/react-sdk | |
npx vercel pull -t $VERCEL_TOKEN | |
url="$(npx vercel deploy --prod -t $VERCEL_TOKEN)" | |
env: | |
VERCEL_PROJECT_ID: ${{ secrets.VERCEL_PROJECT_ID_REACT_SDK_EXAMPLE }} | |
- name: Deploy React example to Vercel | |
run: | | |
cd examples/react | |
npx vercel pull -t $VERCEL_TOKEN | |
url="$(npx vercel deploy --prod -t $VERCEL_TOKEN)" | |
env: | |
VERCEL_PROJECT_ID: ${{ secrets.VERCEL_PROJECT_ID_REACT_EXAMPLE }} | |
- name: Deploy web-js example to Vercel | |
run: | | |
cd examples/web-js | |
npx vercel pull -t $VERCEL_TOKEN | |
npx vercel deploy --prod -t $VERCEL_TOKEN | |
env: | |
VERCEL_PROJECT_ID: ${{ secrets.VERCEL_PROJECT_ID_WEB_JS_EXAMPLE }} | |
- name: Deploy web-js-script example to Vercel | |
run: | | |
cd examples/web-js-script | |
npx vercel pull -t $VERCEL_TOKEN | |
url="$(npx vercel deploy --prod -t $VERCEL_TOKEN)" | |
env: | |
VERCEL_PROJECT_ID: ${{ secrets.VERCEL_PROJECT_ID_WEB_JS_SCRIPT_EXAMPLE }} |