Skip to content

Commit

Permalink
ci: fix conditions
Browse files Browse the repository at this point in the history
  • Loading branch information
eitsupi committed Jan 13, 2024
1 parent d0f34d4 commit 3f86100
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/actions/setup/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ runs:
using: composite
steps:
- name: Update Rust
if: inputs.rust-nightly != 'true' && env.LIBR_POLARS_FEATURES == ''
if: inputs.rust-nightly != 'true' && env.LIBR_POLARS_FEATURES != 'full_features'
shell: bash
run: |
rustup update
Expand All @@ -27,7 +27,7 @@ runs:
repo-token: ${{ inputs.token }}

- name: Set up Rust nightly toolchain
if: inputs.rust-nightly == 'true' || env.LIBR_POLARS_FEATURES != ''
if: inputs.rust-nightly == 'true' || env.LIBR_POLARS_FEATURES == 'full_features'
shell: bash
run: |
task setup-rust-toolchain
Expand Down

0 comments on commit 3f86100

Please sign in to comment.