From 4342f02a4671ccf8c3c1eb5f097777aafa873f17 Mon Sep 17 00:00:00 2001 From: Jarek Potiuk Date: Thu, 28 Mar 2024 22:50:33 +0100 Subject: [PATCH] Fix secrets inheriting for docs build The workflow for docs building had been moved to a different sub-workflow and it needs secrets in canary build to upload the docs to AWS. This PR adds the secret inheriting to the docs workflow to fix the problem. --- .github/workflows/ci.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 499e4c59fba79..c4dbc86eb2722 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -272,6 +272,7 @@ jobs: name: "Static checks, mypy, docs" needs: [build-info, wait-for-ci-images] uses: ./.github/workflows/static-checks-mypy-docs.yml + secrets: inherit with: runs-on: ${{ needs.build-info.outputs.runs-on }} image-tag: ${{ needs.build-info.outputs.image-tag }}