From 65007e254afa69b783e613982442d72013a4e9bd Mon Sep 17 00:00:00 2001 From: Phillip Webb Date: Mon, 1 Dec 2025 17:27:07 -0800 Subject: [PATCH] Fix support building a specific SHA See gh-44204 --- .github/workflows/deploy-docs.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/deploy-docs.yml b/.github/workflows/deploy-docs.yml index d253dd6d982..f3aa630031d 100644 --- a/.github/workflows/deploy-docs.yml +++ b/.github/workflows/deploy-docs.yml @@ -26,7 +26,7 @@ jobs: with: fetch-depth: 0 - name: Rest Build Reference to SHA - if: ${{ github.event.inputs.build-refname != '' && github.event.inputs.build-refsha != '' }} + if: ${{ github.event.inputs.build-refname != '' && github.event.inputs.build-sha != '' }} run: git update-ref refs/remotes/origin/${{ github.event.inputs.build-refname }} {{ github.event.inputs.build-sha }} - name: Fetch Main Branch run: git fetch origin ${{ github.event.repository.default_branch }}:main