Skip to content

Commit bc82930

Browse files
authored
Add VERCEL_PROJECT_ID and VERCEL_ORG_ID (#844)
1 parent 2025f07 commit bc82930

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.github/workflows/ci.yml

+4-1
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,10 @@ jobs:
113113
run: poe gen-docs
114114
- name: Deploy prod API docs
115115
if: ${{ github.ref == 'refs/heads/main' && matrix.docsTarget }}
116-
run: npx vercel deploy build/apidocs -t ${{ secrets.VERCEL_TOKEN }} --name python --scope temporal --prod --yes
116+
env:
117+
VERCEL_ORG_ID: ${{ secrets.VERCEL_ORG_ID }}
118+
VERCEL_PROJECT_ID: ${{ secrets.VERCEL_PROJECT_ID }}
119+
run: npx vercel deploy build/apidocs -t ${{ secrets.VERCEL_TOKEN }} --prod --yes
117120

118121
# Confirm README ToC is generated properly
119122
- uses: actions/setup-node@v4

0 commit comments

Comments
 (0)