Skip to content

Commit b934831

Browse files
committed
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.
1 parent 0c4ba0f commit b934831

1 file changed

Lines changed: 3 additions & 0 deletions

File tree

.github/workflows/build-docs.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@ on:
77

88
permissions: read-all
99

10+
env:
11+
PACKAGE_NAME: mkl_random
12+
1013
jobs:
1114
build-and-deploy:
1215
name: Build and Deploy Documentation

0 commit comments

Comments
 (0)