aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/release.yaml
diff options
context:
space:
mode:
authorAleksey Kladov <[email protected]>2020-03-04 17:17:26 +0000
committerGitHub <[email protected]>2020-03-04 17:17:26 +0000
commitae6109a68ce6980bdaeb3824adfc14417d40aa4a (patch)
tree7b86d3d9a4df5c3875a16e7adf7e49bfecef0d75 /.github/workflows/release.yaml
parent8ac7a180cf8f08c8c6649c6f06709198425a58a1 (diff)
parente5aed5c593c64336cd53ca0ddfcff59009cae534 (diff)
Merge pull request #3457 from matklad/simple-ci
Remove needless dep
Diffstat (limited to '.github/workflows/release.yaml')
-rw-r--r--.github/workflows/release.yaml10
1 files changed, 2 insertions, 8 deletions
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:
43 43
44 - name: Build 44 - name: Build
45 if: matrix.os == 'ubuntu-latest' 45 if: matrix.os == 'ubuntu-latest'
46 uses: actions-rs/cargo@v1 46 run: cargo build --package rust-analyzer --bin rust-analyzer --release --target x86_64-unknown-linux-musl
47 env: 47 env:
48 CC: clang 48 CC: clang
49 with:
50 command: build
51 args: --package rust-analyzer --bin rust-analyzer --release --target x86_64-unknown-linux-musl
52 49
53 - name: Build 50 - name: Build
54 if: matrix.os != 'ubuntu-latest' 51 if: matrix.os != 'ubuntu-latest'
55 uses: actions-rs/cargo@v1 52 run: cargo build --package rust-analyzer --bin rust-analyzer --release
56 with:
57 command: build
58 args: --package rust-analyzer --bin rust-analyzer --release
59 53
60 - name: Create distribution dir 54 - name: Create distribution dir
61 run: mkdir ./dist 55 run: mkdir ./dist