From 7a34951342b512101b355baaea5d6eaee8cb8b57 Mon Sep 17 00:00:00 2001 From: Max Rakitin Date: Wed, 14 Aug 2024 08:48:01 -0700 Subject: [PATCH] CI: add a missing step to set the env vars in the docs job --- .github/workflows/ci-test.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/ci-test.yml b/.github/workflows/ci-test.yml index 9a4fd36..c0dcfc5 100644 --- a/.github/workflows/ci-test.yml +++ b/.github/workflows/ci-test.yml @@ -128,6 +128,11 @@ jobs: fail-fast: false steps: + - name: Set env vars + run: | + export REPOSITORY_NAME=${GITHUB_REPOSITORY#*/} # just the repo, as opposed to org/repo + echo "REPOSITORY_NAME=${REPOSITORY_NAME}" >> $GITHUB_ENV + - name: Download docs from GitHub artifacts uses: actions/download-artifact@v3 with: