Skip to content

Commit

Permalink
fix action script error
Browse files Browse the repository at this point in the history
  • Loading branch information
runningwater committed Jul 30, 2024
1 parent dd8eb7a commit 91e2905
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,11 +40,11 @@ jobs:
- name: Rust cache cleanup
uses: Swatinem/rust-cache@v2
with:
key: sqlx-${{env.SQLX_VERSION}}
key: sqlx-${{ env.SQLX_VERSION }}
- name: Install slqx-client
run: cargo install sqlx-cli
--version={{env.SQLX_VERSION}}
--features ${{env.SQLX_FEATURES}}
--version=${{ env.SQLX_VERSION }}
--features ${{ env.SQLX_FEATURES }}
--no-default-features
--locked
- name: Install postgresql-client
Expand Down Expand Up @@ -84,11 +84,11 @@ jobs:
components: clippy
- uses: Swatinem/rust-cache@v2
with:
key: sqlx-${{env.SQLX_VERSION}}
key: sqlx-${{ env.SQLX_VERSION }}
- name: Install sqlx-client
run: cargo install sqlx-cli
--version={{env.SQLX_VERSION}}
--features ${{env.SQLX_FEATURES}}
--version=${{ env.SQLX_VERSION }}
--features ${{ env.SQLX_FEATURES }}
--no-default-features
--locked
- name: Install postgresql-client
Expand Down

0 comments on commit 91e2905

Please sign in to comment.