networking works well enough now, bump version to alpha-11 #4
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: vercel production deployment | |
env: | |
VERCEL_ORG_ID: ${{ secrets.VERCEL_ORG_ID }} | |
VERCEL_PROJECT_ID: ${{ secrets.VERCEL_PROJECT_ID }} | |
on: | |
push: | |
tags: | |
- "*" | |
jobs: | |
Deploy-Production: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: install vercel cli | |
run: npm install --global vercel@latest | |
- name: build vercel project | |
run: npm run build | |
- name: deploy to vercel production | |
run: vercel deploy --prebuilt --prod --token=${{ secrets.VERCEL_TOKEN }} |