From af6e45bc87e18c44da841a1abe11c4d388957326 Mon Sep 17 00:00:00 2001 From: Alice Pote Date: Mon, 8 Jan 2024 13:09:09 -0500 Subject: [PATCH] chore(ci): add a version number output from the release-dev task (#5232) This adds an output from the `release-dev` workflow which will let other calling workflows get the version which has just been released. --- .github/workflows/release-dev.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/release-dev.yml b/.github/workflows/release-dev.yml index e6695cd9b26..512172ce96c 100644 --- a/.github/workflows/release-dev.yml +++ b/.github/workflows/release-dev.yml @@ -4,6 +4,11 @@ on: workflow_dispatch: # Make this a reusable workflow, no value needed # https://docs.github.com/en/actions/using-workflows/reusing-workflows + workflow_call: + outputs: + dev-version: + description: The version that was just published to npm. + value: ${{ jobs.get-dev-version.outputs.dev-version }} jobs: build_core: