Skip to content

update deploy.yml

update deploy.yml #24

Workflow file for this run

name: Deploy Astro to Vercel
on:
push:
branches: [workflows]
pull_request:
types: [opened, synchronize, reopened]
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: '20'
- name: Install dependencies
run: npm run install
- name: Build project
run: npm run build
- name: Deploy to Vercel
env:
VERCEL_ORG_ID: ${{ secrets.VERCEL_ORG_ID }}
VERCEL_PROJECT_ID: ${{ secrets.VERCEL_PROJECT_ID }}
run: |
npx vercel --prod --token=${{ secrets.VERCEL_TOKEN }} --yes