From cb16d45973baaed8093bfaec0d93097b01ef72df Mon Sep 17 00:00:00 2001 From: Trask Stalnaker Date: Sat, 15 Feb 2025 06:03:57 -0800 Subject: [PATCH] Fix release workflow failure (#13305) --- .github/workflows/release.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 478fac86c1..0c6586817e 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -6,7 +6,7 @@ permissions: contents: read jobs: - required-jobs: + common: uses: ./.github/workflows/build-common.yml # test-latest-deps is intentionally not included in the release workflows @@ -23,7 +23,7 @@ jobs: contents: write # for creating the release runs-on: ubuntu-latest needs: - - required-jobs + - common outputs: version: ${{ steps.create-github-release.outputs.version }} prior-version: ${{ steps.create-github-release.outputs.prior-version }}