From 802fc3781b1c18be598ac85900bbf24091a4ae3f Mon Sep 17 00:00:00 2001 From: Victor Lin <13424970+victorlin@users.noreply.github.com> Date: Tue, 12 Nov 2024 15:03:58 -0800 Subject: [PATCH] Pass secrets to release job The release workflow needs to specify `secrets: inherit` so that the release job in the called workflow can access secrets to do its thing. --- .github/workflows/release.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 76c750492..036f0d6c1 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -11,5 +11,6 @@ on: jobs: run: uses: ./.github/workflows/ci.yaml + secrets: inherit with: version: ${{ inputs.version }}