diff options
| author | Henrik Tjäder <henrik@tjaders.com> | 2025-06-15 14:05:31 +0200 |
|---|---|---|
| committer | Emil Fresk <emil.fresk@gmail.com> | 2025-06-15 15:43:12 +0000 |
| commit | ca5ae8090ceacdc31c40981a4823da0733083eaa (patch) | |
| tree | f7dc55720ac24ca4ed48b4e335b6ee0c5589217e /.github/workflows/build.yml | |
| parent | 52d2e6e8615bb5e8463e384c133a42e17f375469 (diff) | |
ci: espflash: use install-action
Tries cargo-binstall, then if that fails compiles
Diffstat (limited to '.github/workflows/build.yml')
| -rw-r--r-- | .github/workflows/build.yml | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 7683b61..2b4204a 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -170,7 +170,9 @@ jobs: # Use precompiled if possible - name: Install espflash if: contains(matrix.input.platform, 'esp32') - run: cargo install espflash --version 3.3.0 --force --no-default-features --features cli + uses: taiki-e/install-action@v2 + with: + tool: espflash - name: Install esptool.py if: contains(matrix.input.platform, 'esp32') |
