aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/ci.yaml
diff options
context:
space:
mode:
Diffstat (limited to '.github/workflows/ci.yaml')
-rw-r--r--.github/workflows/ci.yaml32
1 files changed, 0 insertions, 32 deletions
diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml
index eab03f581..3a2bdb4a6 100644
--- a/.github/workflows/ci.yaml
+++ b/.github/workflows/ci.yaml
@@ -78,23 +78,6 @@ jobs:
78 if: matrix.os == 'windows-latest' 78 if: matrix.os == 'windows-latest'
79 run: Remove-Item ./target/${{ env.PROFILE }}/xtask.exe 79 run: Remove-Item ./target/${{ env.PROFILE }}/xtask.exe
80 80
81 - name: Creat distribution dir
82 run: mkdir ./dist
83
84 - name: Copy binaries (non-win)
85 if: matrix.os != 'windows-latest'
86 run: cp ./target/${{ env.PROFILE }}/ra_lsp_server* ./dist
87
88 - name: Copy binaries (win)
89 if: matrix.os == 'windows-latest'
90 run: copy ./target/${{ env.PROFILE }}/ra_lsp_server.* ./dist
91
92 - name: Upload artifacts
93 uses: actions/upload-artifact@v1
94 with:
95 name: executables-${{ matrix.os }}
96 path: ./dist
97
98 type-script: 81 type-script:
99 name: TypeScript 82 name: TypeScript
100 runs-on: ubuntu-latest 83 runs-on: ubuntu-latest
@@ -114,18 +97,3 @@ jobs:
114 working-directory: ./editors/code 97 working-directory: ./editors/code
115 - run: npm run package --scripts-prepend-node-path 98 - run: npm run package --scripts-prepend-node-path
116 working-directory: ./editors/code 99 working-directory: ./editors/code
117
118 - name: Create distribution directory
119 run: mkdir ./dist
120
121 - name: Copy vscode extension
122 run: mkdir ./dist/code && cp ./editors/code/*.vsix ./dist/code/
123
124 - name: Copy emacs mode
125 run: cp -R ./editors/emacs ./dist/
126
127 - name: Upload artifacts
128 uses: actions/upload-artifact@v1
129 with:
130 name: editors
131 path: ./dist