File tree Expand file tree Collapse file tree 1 file changed +18
-1
lines changed Expand file tree Collapse file tree 1 file changed +18
-1
lines changed Original file line number Diff line number Diff line change @@ -229,7 +229,7 @@ jobs:
229
229
- start-self-hosted-runner
230
230
env :
231
231
# Location of artifacts generated by build.
232
- ARTIFACTS_PATH : electron/build/dist/build-artifacts/
232
+ ARTIFACTS_PATH : electron/build/dist/build-artifacts
233
233
strategy :
234
234
fail-fast : false
235
235
matrix :
@@ -364,6 +364,23 @@ jobs:
364
364
name : ${{ env.JOB_TRANSFER_ARTIFACT }}
365
365
path : ${{ env.JOB_TRANSFER_ARTIFACT }}
366
366
367
+ - name : Install Node.js 16.x
368
+ uses : actions/setup-node@v3
369
+ with :
370
+ node-version : ' 16.x'
371
+ registry-url : ' https://registry.npmjs.org'
372
+
373
+ - name : Install Go
374
+ uses : actions/setup-go@v3
375
+ with :
376
+ go-version : ${{ env.GO_VERSION }}
377
+
378
+ - name : Install Taskfile
379
+ uses : arduino/setup-task@v1
380
+ with :
381
+ repo-token : ${{ secrets.GITHUB_TOKEN }}
382
+ version : 3.x
383
+
367
384
- name : Install dependencies
368
385
run : yarn
369
386
You can’t perform that action at this time.
0 commit comments