diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3e8d2fb7f..853ea33db 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -113,7 +113,10 @@ jobs: run: poe gen-docs - name: Deploy prod API docs if: ${{ github.ref == 'refs/heads/main' && matrix.docsTarget }} - run: npx vercel deploy build/apidocs -t ${{ secrets.VERCEL_TOKEN }} --name python --scope temporal --prod --yes + env: + VERCEL_ORG_ID: ${{ secrets.VERCEL_ORG_ID }} + VERCEL_PROJECT_ID: ${{ secrets.VERCEL_PROJECT_ID }} + run: npx vercel deploy build/apidocs -t ${{ secrets.VERCEL_TOKEN }} --prod --yes # Confirm README ToC is generated properly - uses: actions/setup-node@v4