Skip to content

Deploy

Deploy #95

Workflow file for this run

name: Deploy
env:
VERCEL_ORG_ID: ${{ secrets.VERCEL_ORG_ID }}
VERCEL_PROJECT_ID: ${{ secrets.VERCEL_PROJECT_ID }}
on: [workflow_dispatch]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: lts/*
- name: Install Vercel CLI
run: npm install --global vercel@latest
- name: Configure npm
run: |
echo "//npm.pkg.github.com/:_authToken=${{ secrets.NPMRC_GITHUB_TOKEN }}" > ~/.npmrc
echo "@cesalberca:registry=https://npm.pkg.github.com" >> ~/.npmrc
- 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 --token=${{ secrets.VERCEL_TOKEN }} --prod