Skip to content

Commit

Permalink
fix: remove unneeded cargo binstall install
Browse files Browse the repository at this point in the history
  • Loading branch information
reubeno committed Jul 23, 2024
1 parent e79e63e commit 6656f40
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -48,9 +48,6 @@ jobs:
- name: Enable cargo cache
uses: Swatinem/rust-cache@v2

- name: Install cargo-binstall
uses: cargo-bins/[email protected]

- name: Build
run: cargo build --release

Expand All @@ -70,12 +67,15 @@ jobs:
- target: "aarch64-unknown-linux-gnu"
arch: "aarch64"
os: "Linux"
binary_name: "brush"
- target: "wasm32-wasip1"
arch: "wasm32"
os: "WASI-0.1"
binary_name: "brush.wasm"
- target: "x86_64-pc-windows-gnu"
arch: "x86_64"
os: "Windows"
binary_name: "brush.exe"

steps:
- name: Checkout
Expand Down Expand Up @@ -110,7 +110,7 @@ jobs:
uses: actions/upload-artifact@v4
with:
name: binaries-${{ matrix.target }}
path: target/${{ matrix.target }}/release/brush
path: target/${{ matrix.target }}/release/${{ matrix.binary_name }}

test:
name: "Test"
Expand Down

0 comments on commit 6656f40

Please sign in to comment.