Skip to content

Merge branch 'develop' of https://github.com/Kernel360/F1-WashFit-FE … #250

Merge branch 'develop' of https://github.com/Kernel360/F1-WashFit-FE …

Merge branch 'develop' of https://github.com/Kernel360/F1-WashFit-FE … #250

Workflow file for this run

name: CD
env:
VERCEL_ORG_ID: ${{ secrets.ORG_ID }}
VERCEL_PROJECT_ID: ${{ secrets.PROJECT_ID }}
on:
push:
branches:
- develop
jobs:
Deploy-Production:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install Vercel CLI
run: npm install --global vercel@latest
- name: Pull Vercel Environment Information
run: vercel pull --yes --environment=production --token=${{ secrets.VERCEL_TOKEN }}
- name: Build Project Artifacts
run: vercel build --prod --token=${{ secrets.VERCEL_TOKEN }}
- name: Deploy Project Artifacts to Vercel
run: vercel deploy --prebuilt --prod --token=${{ secrets.VERCEL_TOKEN }}