From 1e305b89ed0ee195f9c8e6229140dfe7b4ce6d19 Mon Sep 17 00:00:00 2001 From: Aleksey Kladov Date: Wed, 4 Mar 2020 18:05:29 +0100 Subject: Remove needless dep --- .github/workflows/release.yaml | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) (limited to '.github/workflows/release.yaml') diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 30f1ff22f..aef961671 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -43,19 +43,13 @@ jobs: - name: Build if: matrix.os == 'ubuntu-latest' - uses: actions-rs/cargo@v1 + run: cargo build --package rust-analyzer --bin rust-analyzer --release --target x86_64-unknown-linux-musl env: CC: clang - with: - command: build - args: --package rust-analyzer --bin rust-analyzer --release --target x86_64-unknown-linux-musl - name: Build if: matrix.os != 'ubuntu-latest' - uses: actions-rs/cargo@v1 - with: - command: build - args: --package rust-analyzer --bin rust-analyzer --release + run: cargo build --package rust-analyzer --bin rust-analyzer --release - name: Create distribution dir run: mkdir ./dist -- cgit v1.2.3