Skip to content

Commit

Permalink
Create deploy.yml
Browse files Browse the repository at this point in the history
Se agrega archivo deploy.yml para que en el flujo de trabajo solo se despliegue en vercel cuando se haga push en main
  • Loading branch information
angel1285528 authored May 8, 2024
1 parent aa40aee commit 89aede2
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Deploy en Vercel

on:
push:
branches:
- main

jobs:
deploy:
runs-on: ubuntu-latest

steps:
- name: Checkout del repositorio
uses: actions/checkout@v2

- name: Instalar dependencias y compilar (si es necesario)
run: |
# Ejecuta los comandos necesarios para instalar dependencias y compilar tu proyecto
- name: Deploy en Vercel
run: |
# Agrega aquí el comando necesario para realizar el deploy en Vercel

1 comment on commit 89aede2

@vercel
Copy link

@vercel vercel bot commented on 89aede2 May 8, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.