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.
This commit is contained in:
Cody Seibert
2025-12-13 00:51:23 -05:00
parent 935316cb51
commit af04e69dc7

View File

@@ -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)