Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -97,10 +97,10 @@ jobs:
fi

- name: Pull Vercel production settings
run: pnpm dlx vercel@latest --cwd doc pull --yes --environment=production --token="$VERCEL_TOKEN"
run: pnpm dlx vercel@latest pull --yes --environment=production --token="$VERCEL_TOKEN"

- name: Build docs on Vercel
run: pnpm dlx vercel@latest --cwd doc build --prod --token="$VERCEL_TOKEN"
run: pnpm dlx vercel@latest build --prod --token="$VERCEL_TOKEN"

- name: Deploy docs to Vercel production
run: pnpm dlx vercel@latest --cwd doc deploy --prebuilt --prod --token="$VERCEL_TOKEN"
run: pnpm dlx vercel@latest deploy --prebuilt --prod --token="$VERCEL_TOKEN"
Loading