Skip to content

gha added to deploy app to prod #1

gha added to deploy app to prod

gha added to deploy app to prod #1

Workflow file for this run

name: Deploy to vercel production

Check failure on line 1 in .github/workflows/deploy-prod.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/deploy-prod.yml

Invalid workflow file

Invalid `steps` value - steps should be list of `uses` or `run` items
env:
VERCEL_ORG_ID: ${{ secrets.VERCEL_ORG_ID }}
VERCEL_PROJECT_ID: ${{ secrets.VERCEL_PROJECT_ID }}
on :
push:
branches:
main
jobs:
deploy:
runs-on: ubuntu-latest
steps:
name: Checkout Repository
uses: actions/checkout@v4
name: Set up Node
uses: actions/setup-node@v3
with:
node-version: "18"
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: Deploy Project Artifacts to Vercel
run: vercel deploy --prebuilt --prod --token=${{ secrets.VERCEL_TOKEN }}