Skip to content

Main update with CI/CD #3

Main update with CI/CD

Main update with CI/CD #3

name: "CD- Continuous Delivery"
# on:
# push:
# branches: [ main ]
on:
pull_request:
types: [opened, synchronize]
jobs:
deploy:
runs-on: ubuntu-latest
steps:
## [Common_CI_Steps]
- uses: actions/checkout@v3
## ===========================
- name: "Debug"
run: |
ls -la
- name: "Install Dependencies"
run: "npm install"
- name: "Deploy"
run: "yes | npx vercel --prod --token=${{ secrets.VERCEL_TOKEN }} "