docs: state the API base URL #144
Workflow file for this run
This file contains hidden or 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 at Vercel | |
| on: | |
| push: | |
| branches: | |
| - '**' | |
| - '!main' | |
| jobs: | |
| vercel: | |
| runs-on: ubuntu-latest | |
| name: "Deploy application" | |
| env: | |
| VERCEL_ORG_ID: ${{ secrets.ORG_ID }} | |
| VERCEL_PROJECT_ID: ${{ secrets.PROJECT_ID }} | |
| steps: | |
| - uses: actions/checkout@ee0669bd1cc54295c223e0bb666b733df41de1c5 | |
| - uses: actions/setup-node@64ed1c7eab4cce3362f8c340dee64e5eaeef8f7c | |
| with: | |
| node-version: '20' | |
| registry-url: https://registry.npmjs.org/ | |
| - name: Deploy application | |
| run: > | |
| npx --yes vercel@59.1.3 deploy --prod --yes | |
| --token "${{ secrets.VERCEL_TOKEN }}" |