Skip to content

Commit

Permalink
💚 fix(GitHub Actions): only run when specific branches are pushed
Browse files Browse the repository at this point in the history
  • Loading branch information
SerinaNya committed Jun 12, 2024
1 parent fb57535 commit 7b007f4
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,11 @@ name: Deploy to Vercel
env:
VERCEL_ORG_ID: ${{ secrets.VERCEL_ORG_ID }}
VERCEL_PROJECT_ID: ${{ secrets.VERCEL_PROJECT_ID }}
on: push
on:
push:
branches:
- 'master'
- 'main'
jobs:
Deploy:
runs-on: ubuntu-latest
Expand Down

0 comments on commit 7b007f4

Please sign in to comment.