We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6fecdd3 commit f562a1fCopy full SHA for f562a1f
.github/workflows/ci.yaml
@@ -77,11 +77,22 @@ jobs:
77
if: matrix.os == 'windows-latest'
78
run: Remove-Item ./target/debug/xtask.exe
79
80
+ - name: Creat distribution dir
81
+ run: mkdir ./dist
82
+
83
+ - name: Copy binaries (non-win)
84
+ if: matrix.os != 'windows-latest'
85
+ run: cp ./target/debug/ra-lsp-server.* ./dist
86
87
+ - name: Copy binaries (win)
88
+ if: matrix.os == 'windows-latest'
89
+ run: copy ./target/debug/ra-lsp-server.* ./dist
90
91
- name: Upload artifacts
92
uses: actions/upload-artifact@v1
93
with:
- name: executables
- path: ./target/debug
94
+ name: executables-${{ matrix.os }}
95
+ path: ./dist
96
97
type-script:
98
name: TypeScript
0 commit comments