Skip to content

Commit 313f5db

Browse files
committed
use bash in case windows
1 parent 665510a commit 313f5db

3 files changed

Lines changed: 6 additions & 0 deletions

File tree

.github/workflows/nightly-pypi-build.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,7 @@ jobs:
5555
5656
- name: Debug version
5757
run: echo "Publishing version ${STEPS_SET_VERSION_OUTPUTS_VERSION}"
58+
shell: bash
5859
env:
5960
STEPS_SET_VERSION_OUTPUTS_VERSION: ${{ steps.set-version.outputs.VERSION }}
6061

.github/workflows/pypi-build-artifacts.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,7 @@ jobs:
5656
uses: astral-sh/setup-uv@5a095e7a2014a4212f075830d4f7277575a9d098 # v7.3.1
5757

5858
- name: Set version with RC
59+
shell: bash
5960
env:
6061
VERSION: ${{ inputs.VERSION }}
6162
run: uv version "$VERSION"
@@ -71,6 +72,7 @@ jobs:
7172
with:
7273
output-dir: wheelhouse
7374
config-file: "pyproject.toml"
75+
shell: bash
7476
env:
7577
# Ignore 32 bit architectures
7678
CIBW_ARCHS: "auto64"

.github/workflows/python-release.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -81,6 +81,7 @@ jobs:
8181
# Export variables for future steps
8282
echo "VERSION=$VERSION" >> $GITHUB_OUTPUT
8383
echo "RC=$RC" >> $GITHUB_OUTPUT
84+
shell: bash
8485
env:
8586
GITHUB_EVENT_INPUTS_VERSION: ${{ github.event.inputs.version }}
8687
GITHUB_EVENT_INPUTS_RC: ${{ github.event.inputs.rc }}
@@ -89,6 +90,7 @@ jobs:
8990
run: |
9091
echo "Using Version: ${STEPS_VALIDATE_INPUTS_OUTPUTS_VERSION}"
9192
echo "Using RC: ${STEPS_VALIDATE_INPUTS_OUTPUTS_RC}"
93+
shell: bash
9294
env:
9395
STEPS_VALIDATE_INPUTS_OUTPUTS_VERSION: ${{ steps.validate-inputs.outputs.VERSION }}
9496
STEPS_VALIDATE_INPUTS_OUTPUTS_RC: ${{ steps.validate-inputs.outputs.RC }}
@@ -113,6 +115,7 @@ jobs:
113115
enable-cache: false
114116

115117
- name: Validate current pyiceberg version
118+
shell: bash
116119
env:
117120
VERSION: ${{ needs.validate-inputs.outputs.VERSION }}
118121
run: |

0 commit comments

Comments
 (0)