fix(ci): use env for the cargo-make version (#76)

This commit is contained in:
Orhun Parmaksız 2023-02-22 14:40:04 +02:00 committed by GitHub
parent 0456abb327
commit 1c0ed3268b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -39,7 +39,7 @@ jobs:
key: ${{ runner.os }}-${{ matrix.rust }}-cargo-make-${{ env.CI_CARGO_MAKE_VERSION }}
- name: "Install cargo-make"
if: steps.cache-cargo-make.outputs.cache-hit != 'true'
run: cargo install cargo-make --version "${CI_CARGO_MAKE_VERSION}"
run: cargo install cargo-make --version ${{ env.CI_CARGO_MAKE_VERSION }}
- name: "Format / Build / Test"
run: cargo make ci
env: