File tree 1 file changed +10
-12
lines changed
1 file changed +10
-12
lines changed Original file line number Diff line number Diff line change @@ -140,22 +140,11 @@ jobs:
140
140
cd ../../core
141
141
npm ci
142
142
143
- # npm install binary
144
- - name : Install binary node_modules
145
- run : |
146
- cd ../../binary
147
- npm ci
148
-
149
143
# npm install gui
150
- - name : Install gui node_modules
144
+ - name : Install gui node_modules and build
151
145
run : |
152
146
cd ../../gui
153
147
npm ci
154
-
155
- # build gui
156
- - name : Build gui
157
- run : |
158
- cd ../../gui
159
148
npm run build
160
149
161
150
# Run prepackage.js script
@@ -168,6 +157,12 @@ jobs:
168
157
# https://github.com/microsoft/vscode-ripgrep/issues/9#issuecomment-643965333
169
158
GITHUB_TOKEN : ${{ secrets.CI_GITHUB_TOKEN }}
170
159
160
+ # npm install binary
161
+ - name : Install binary node_modules
162
+ run : |
163
+ cd ../../binary
164
+ npm ci
165
+
171
166
# Build binaries
172
167
- name : Build the binaries
173
168
run : |
@@ -224,6 +219,9 @@ jobs:
224
219
shell : bash
225
220
run : |
226
221
cd ../../extensions/intellij/build/distributions
222
+ echo "Builds:"
223
+ ls
224
+ echo "---"
227
225
FILENAME=`ls *.zip`
228
226
unzip "$FILENAME" -d content
229
227
You can’t perform that action at this time.
0 commit comments