Skip to content

Commit

Permalink
fix(ci): use latest Avalanche CLI version
Browse files Browse the repository at this point in the history
  • Loading branch information
Nuttymoon committed Aug 10, 2023
1 parent 7876bcd commit e053e55
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,13 @@ jobs:

- name: Install avalanche-cli
run: |
curl -sSfL https://raw.githubusercontent.com/ava-labs/avalanche-cli/main/scripts/install.sh | sh -s -- v1.2.1
curl -sSfL https://raw.githubusercontent.com/ava-labs/avalanche-cli/main/scripts/install.sh | sh -s
- name: Start a local Avalanche network
run: ~/bin/avalanche network start
run: |
# Workaround for avoiding metrics collection prompt
echo "" | ~/bin/avalanche config metrics disable
~/bin/avalanche network start
- name: Setup cache for Rust
uses: Swatinem/rust-cache@v2
Expand Down

0 comments on commit e053e55

Please sign in to comment.