Skip to content

Commit

Permalink
Fix syntax error.
Browse files Browse the repository at this point in the history
  • Loading branch information
rdmitr committed Jun 11, 2024
1 parent e7d0e55 commit c650180
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build-libraries.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,11 @@ jobs:
rustup default ${{ inputs.rust_version }}
- name: Add target
if: '${{ matrix.build.tool }}' == 'cargo'
if: ${{ matrix.build.tool == 'cargo' }}
run: rustup target add ${{ matrix.target }}

- name: Install cross
if: '${{ matrix.build.tool }}' == 'cross'
if: ${{ matrix.build.tool == 'cross' }}
run: cargo install cross --git https://github.com/cross-rs/cross --rev c87a52a

- name: Checkout
Expand Down

0 comments on commit c650180

Please sign in to comment.