Skip to content

chore(mimic): rename tools to follow naming convention without colon #95

chore(mimic): rename tools to follow naming convention without colon

chore(mimic): rename tools to follow naming convention without colon #95

Workflow file for this run

name: Deploy Vercel
on:
push:
branches: [main]
paths:
- "apps/mcp-cafe24-admin-example/**"
- "packages/**"
- "pnpm-lock.yaml"
- "pnpm-workspace.yaml"
- ".github/workflows/vercel.yml"
concurrency:
group: vercel-cafe24-admin-${{ github.ref }}
cancel-in-progress: true
jobs:
deploy:
runs-on: ubuntu-latest
env:
APP_DIR: apps/mcp-cafe24-admin-example
VERCEL_ORG_ID: ${{ secrets.VERCEL_ORG_ID }}
VERCEL_PROJECT_ID: ${{ secrets.VERCEL_PROJECT_ID_CAFE24_ADMIN_EXAMPLE }}
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v4
- uses: actions/setup-node@v4
with:
node-version: 24
cache: pnpm
- name: Install dependencies (workspace)
run: pnpm -w install --frozen-lockfile
- name: Debug Vercel Project
run: |
echo "VERCEL_PROJECT_ID=${VERCEL_PROJECT_ID:0:8}****"
echo "VERCEL_ORG_ID=${VERCEL_ORG_ID:0:8}****"
- name: Vercel Pull
run: |
npx vercel pull --yes \
--environment=${{ github.ref_name == 'main' && 'production' || 'preview' }} \
--token=${{ secrets.VERCEL_TOKEN }}
- name: Vercel Build
run: |
npx vercel build \
${{ github.ref_name == 'main' && '--prod' || '' }} \
--token=${{ secrets.VERCEL_TOKEN }}
- name: Vercel Deploy
run: |
npx vercel deploy --prebuilt \
${{ github.ref_name == 'main' && '--prod' || '' }} \
--token=${{ secrets.VERCEL_TOKEN }}