Skip to content

Commit

Permalink
Deploy from dev branch to Vercel automatically
Browse files Browse the repository at this point in the history
  • Loading branch information
benborgers committed Sep 19, 2024
1 parent 19f19f1 commit 6dffd63
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/deploy-dev.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# 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 }}

0 comments on commit 6dffd63

Please sign in to comment.