Skip to content

Update production.yml #6

Update production.yml

Update production.yml #6

Workflow file for this run

name: Vercel Production Deployment
env:

Check failure on line 3 in .github/workflows/production.yml

View workflow run for this annotation

GitHub Actions / Vercel Production Deployment

Invalid workflow file

The workflow is not valid. .github/workflows/production.yml (Line: 3, Col: 5): Unexpected value ''
on:
push:
branches:
- develop
jobs:
Deploy-Production:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install Vercel CLI
run: npm install --global vercel
- 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
run: vercel deploy --prebuilt --prod --token=${{ secrets.VERCEL_TOKEN }}