From c96fe31ecf3d994e3ff69f51e69bff904011d81d Mon Sep 17 00:00:00 2001 From: Mohammad Noor Abu Khleif Date: Sun, 1 Jun 2025 19:39:50 +0300 Subject: [PATCH] chore: update default input in the release action --- .github/workflows/release-sdk.yaml | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/.github/workflows/release-sdk.yaml b/.github/workflows/release-sdk.yaml index 054f9ae48e..83fca5593b 100644 --- a/.github/workflows/release-sdk.yaml +++ b/.github/workflows/release-sdk.yaml @@ -3,12 +3,11 @@ name: Release SDK on: workflow_dispatch: inputs: - branch: + core-ref: description: | - Branch to release the SDK from. - Defaults to the branch the action is being run from. + SDK Stack Core branch or ref to use. type: string - default: '' + default: 'legacy' jobs: # run-examples: @@ -26,4 +25,4 @@ jobs: # needs: [ run-examples ] secrets: inherit with: - branch: ${{ inputs.branch }} + branch: ${{ inputs.core-ref }}