fix(ci): checkout default branch in Update Docs job

Checkout the default branch instead of the tag to avoid detached HEAD
state, which caused git pull to fail.
This commit is contained in:
Junya Morioka
2026-01-09 03:05:28 +09:00
parent 9810496373
commit 43ac973390
+2
View File
@@ -241,6 +241,8 @@ jobs:
DEFAULT_BRANCH: ${{ github.event.repository.default_branch }}
steps:
- uses: actions/checkout@v4
with:
ref: ${{ github.event.repository.default_branch }}
- uses: actions/setup-python@v5
with: