Deploy from dev
branch to Vercel automatically
#1
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
# Using this to deploy instead of Vercel's GitHub integration because the | |
# actual integration requires a paid Vercel account. | |
name: Vercel Dev Branch Deployment | |
env: | |
VERCEL_ORG_ID: ${{ secrets.VERCEL_ORG_ID }} | |
VERCEL_PROJECT_ID: ${{ secrets.VERCEL_PROJECT_ID }} | |
on: | |
push: | |
branches: | |
- dev | |
jobs: | |
dev-deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install Vercel CLI | |
run: npm install --global vercel@latest | |
- name: Deploy Project Artifacts to Vercel | |
run: vercel deploy --no-wait --token=${{ secrets.VERCEL_TOKEN }} |