Skip to content
Merged
Show file tree
Hide file tree
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/deploy-doc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,10 +50,10 @@ jobs:
fi

- name: Pull Vercel production settings
run: pnpm dlx vercel@latest pull --yes --environment=production --cwd doc --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 build --prod --cwd doc --token="$VERCEL_TOKEN"
run: pnpm dlx vercel@latest build --prod --token="$VERCEL_TOKEN"

- name: Deploy docs to Vercel production
run: pnpm dlx vercel@latest deploy --prebuilt --prod --cwd doc --token="$VERCEL_TOKEN"
run: pnpm dlx vercel@latest deploy --prebuilt --prod --token="$VERCEL_TOKEN"
2 changes: 1 addition & 1 deletion cli/src/runtime-environment.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ describe('runtime environment', () => {
USERPROFILE: windowsHomeDir
},
homedir: windowsHomeDir
})).toBe(path.join(windowsHomeDir, '.codex', 'config.toml'))
})).toBe(path.win32.join(windowsHomeDir, '.codex', 'config.toml'))
})

it('selects the host config path that matches the current Windows profile in WSL', () => {
Expand Down
Loading