aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.github/workflows/release.yaml3
1 files changed, 2 insertions, 1 deletions
diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml
index 95b56cebc..8e4c9adb3 100644
--- a/.github/workflows/release.yaml
+++ b/.github/workflows/release.yaml
@@ -34,13 +34,14 @@ jobs:
34 with: 34 with:
35 toolchain: stable 35 toolchain: stable
36 profile: minimal 36 profile: minimal
37 target: x86_64-unknown-linux-musl
37 override: true 38 override: true
38 39
39 - name: Build 40 - name: Build
40 uses: actions-rs/cargo@v1 41 uses: actions-rs/cargo@v1
41 with: 42 with:
42 command: build 43 command: build
43 args: --package ra_lsp_server --bin ra_lsp_server --release 44 args: --package ra_lsp_server --bin ra_lsp_server --target x86_64-unknown-linux-musl --release
44 45
45 - name: Strip symbols 46 - name: Strip symbols
46 if: matrix.os == 'ubuntu-latest' 47 if: matrix.os == 'ubuntu-latest'