Skip to content

Commit

Permalink
chore: deploy to vercel on push to main
Browse files Browse the repository at this point in the history
  • Loading branch information
manuartero committed Sep 29, 2023
1 parent 4e79dff commit 2f8208d
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Deploy to Vercel

on:
push:
branches:
- main

jobs:
deploy:
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v2

- name: Install Vercel CLI
run: npm install -g vercel

- name: Deploy to Vercel
run: vercel --token ${{ secrets.VERCEL_TOKEN }}

0 comments on commit 2f8208d

Please sign in to comment.