From af04e69dc7461651b5de61f4f3cbcb2f8bdfbc8a Mon Sep 17 00:00:00 2001 From: Cody Seibert Date: Sat, 13 Dec 2025 00:51:23 -0500 Subject: [PATCH] chore: specify shell for version extraction in release workflow - Updated the release workflow to explicitly set the shell to bash for the version extraction steps, ensuring consistent execution across environments. --- .github/workflows/release.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 396736ef..36d53e37 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -50,6 +50,7 @@ jobs: - name: Extract and set version id: version + shell: bash run: | VERSION_TAG="${{ github.event.inputs.version || github.ref_name }}" # Remove 'v' prefix if present (e.g., v1.0.0 -> 1.0.0) @@ -143,6 +144,7 @@ jobs: - name: Extract version id: version + shell: bash run: | VERSION_TAG="${{ github.event.inputs.version || github.ref_name }}" # Remove 'v' prefix if present (e.g., v1.0.0 -> 1.0.0)