File tree Expand file tree Collapse file tree 4 files changed +6
-1
lines changed
Expand file tree Collapse file tree 4 files changed +6
-1
lines changed Original file line number Diff line number Diff line change 2626 using : " composite"
2727 steps :
2828 - name : Setup specified Rust toolchain
29- shell : bash
3029 if : ${{ inputs.rust-version != '' }}
30+ shell : bash
3131 env :
3232 RUST_VERSION : ${{ inputs.rust-version }}
3333 run : |
Original file line number Diff line number Diff line change @@ -172,6 +172,7 @@ jobs:
172172 run : make docker-up
173173
174174 - name : Run tests
175+ shell : bash
175176 env :
176177 # Disable debug info to speed up compilation and reduce artifact size
177178 RUSTFLAGS : " -C debuginfo=0"
Original file line number Diff line number Diff line change 6565 # Only publish if it's a tag and the tag is not a pre-release
6666 if : ${{ startsWith(github.ref, 'refs/tags/') && !contains(github.ref, '-') }}
6767 run : cargo publish --all-features # zizmor: ignore[use-trusted-publishing] -- https://github.com/apache/iceberg-rust/issues/1539
68+ shell : bash
6869 env :
6970 CARGO_REGISTRY_TOKEN : ${{ secrets.CARGO_REGISTRY_TOKEN }}
7071
Original file line number Diff line number Diff line change 4949 - name : Validate release tag format
5050 id : validate
5151 # Valid formats: v<major>.<minor>.<patch> OR v<major>.<minor>.<patch>-rc.<release_candidate>
52+ shell : bash
5253 env :
5354 RELEASE_TAG : ${{ inputs.release_tag }}
5455 run : |
@@ -119,6 +120,7 @@ jobs:
119120 # doing this explicitly to avoid issue in Windows where `mv` does not overwrite existing file
120121 rm Cargo.toml
121122 mv Cargo.toml.tmp Cargo.toml
123+ shell : bash
122124 env :
123125 NEEDS_VALIDATE_RELEASE_TAG_OUTPUTS_CARGO_VERSION : ${{ needs.validate-release-tag.outputs.cargo-version }}
124126
@@ -161,6 +163,7 @@ jobs:
161163 - name : Set cargo version for RC
162164 if : ${{ needs.validate-release-tag.outputs.is-rc == 'true' }}
163165 working-directory : " bindings/python"
166+ shell : bash
164167 env :
165168 CARGO_VERSION : ${{ needs.validate-release-tag.outputs.cargo-version }}
166169 run : |
You can’t perform that action at this time.
0 commit comments