From 96d3bd9e8307714aae705525040a7b05ce865ed1 Mon Sep 17 00:00:00 2001 From: Steve Sanderson Date: Mon, 14 Sep 2026 14:57:48 +0100 Subject: [PATCH] Disable failing Java docs deployment Skip only the standalone documentation-site deployment job until JAVA_RELEASE_GITHUB_TOKEN authentication is restored. Java Maven publication and all other release jobs remain enabled. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> Copilot-Session: be6fcbfa-47bd-4aa9-9d51-99b66d565d6c --- .github/workflows/java-publish-maven.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/java-publish-maven.yml b/.github/workflows/java-publish-maven.yml index d1ef78f66b..42833be02a 100644 --- a/.github/workflows/java-publish-maven.yml +++ b/.github/workflows/java-publish-maven.yml @@ -775,7 +775,9 @@ jobs: deploy-site: name: Deploy Documentation Site needs: [preflight, deploy-maven] - if: github.ref == 'refs/heads/main' && needs.deploy-maven.outputs.published == 'true' + # Disabled while JAVA_RELEASE_GITHUB_TOKEN fails authentication against + # github/copilot-sdk-java. + if: ${{ false }} runs-on: ubuntu-latest steps: - name: Trigger site deployment on standalone repo