From b934831d02d2d39fd8c71b750dd8d227dc7834bf Mon Sep 17 00:00:00 2001 From: Anton Volkov Date: Wed, 5 Aug 2026 14:49:04 +0200 Subject: [PATCH] Define PACKAGE_NAME env var in build-docs workflow The 'Save built docs as an artifact' step references ${{ env.PACKAGE_NAME }} in the artifact name, but the variable was never defined in this workflow, producing an artifact named ' rendered documentation' with a leading space. Define PACKAGE_NAME at the workflow level, matching the convention used in conda-package.yml. --- .github/workflows/build-docs.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/build-docs.yml b/.github/workflows/build-docs.yml index 33eeac7a..88cbdd8f 100644 --- a/.github/workflows/build-docs.yml +++ b/.github/workflows/build-docs.yml @@ -7,6 +7,9 @@ on: permissions: read-all +env: + PACKAGE_NAME: mkl_random + jobs: build-and-deploy: name: Build and Deploy Documentation