From 2ff9d8fda21add06a6b0a59bf11d39e34b0791d1 Mon Sep 17 00:00:00 2001 From: Clement Tsang <34804052+ClementTsang@users.noreply.github.com> Date: Thu, 25 Dec 2025 01:34:37 -0500 Subject: [PATCH] ci: fix post-release doc job (#1918) --- .github/workflows/post_release.yml | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/.github/workflows/post_release.yml b/.github/workflows/post_release.yml index 1f6a6cdf..2e21036b 100644 --- a/.github/workflows/post_release.yml +++ b/.github/workflows/post_release.yml @@ -66,10 +66,15 @@ jobs: - name: Install Python dependencies run: pip install -r docs/requirements.txt + # TODO: Test this with the script instead - name: Configure git user and email - run: ./scripts/ci/configure_git.sh + run: | + git config --global user.name ${GIT_USER} + git config --global user.email ${GIT_EMAIL} + echo Name: $(git config --get user.name) + echo Email: $(git config --get user.email) - # TODO: Test with scripts/ci/release_stable_docs.sh + # TODO: Test this with the script instead - name: Build and deploy docs with mike as the latest stable branch run: | cd docs