From 713117736831aec8599a9839c5acfacf8a79128d Mon Sep 17 00:00:00 2001 From: SashaMIT Date: Wed, 5 Aug 2026 21:09:00 +0700 Subject: [PATCH] ci: bind bump-release workflow_dispatch inputs before shell use Move github.event.inputs.bump and extra_args into step env before passing them to the bump-version script. Co-authored-by: Cursor --- .github/workflows/bump-release.yaml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/bump-release.yaml b/.github/workflows/bump-release.yaml index b367b525..c2ceab40 100644 --- a/.github/workflows/bump-release.yaml +++ b/.github/workflows/bump-release.yaml @@ -66,8 +66,11 @@ jobs: version: "0.11.9" - name: Run version bump script + env: + BUMP: ${{ github.event.inputs.bump }} + EXTRA_ARGS: ${{ github.event.inputs.extra_args }} run: | - source ./scripts/ci/bump-version.sh ${{ github.event.inputs.bump }} ${{ github.event.inputs.extra_args }} + source ./scripts/ci/bump-version.sh "$BUMP" $EXTRA_ARGS echo "$old_version" > OLD_VERSION - name: Create artificats of changes from diff