Skip to content

chore(deps-dev): bump @grpc/grpc-js from 1.9.11 to 1.10.8 #77

chore(deps-dev): bump @grpc/grpc-js from 1.9.11 to 1.10.8

chore(deps-dev): bump @grpc/grpc-js from 1.9.11 to 1.10.8 #77

Workflow file for this run

name: "Publish doc registry in Vercel"
env:
VERCEL_ORG_ID: ${{ secrets.VERCEL_ORG_ID }}
VERCEL_PROJECT_ID: ${{ secrets.VERCEL_PROJECT_ID }}
on:
pull_request:
branches:
- main
types:
- closed
permissions:
contents: write
jobs:
starlight:
if: ${{contains(github.head_ref, 'changelog')}}
environment: production
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Install Vercel CLI
run: npm install --global vercel@latest bun
- name: Pull Vercel Environment Information
run: cd ./scripts/doc-registry && vercel pull --yes --environment=production --token=${{ secrets.VERCEL_TOKEN }}
- name: Build Project Artifacts
run: cd ./scripts/doc-registry && vercel build --prod --token=${{ secrets.VERCEL_TOKEN }}
- name: Deploy Project Artifacts to Vercel
run: cd ./scripts/doc-registry && vercel deploy --prebuilt --prod --token=${{ secrets.VERCEL_TOKEN }}