Skip to content

Commit 8c91b45

Browse files
committed
f
1 parent 331d1e8 commit 8c91b45

File tree

1 file changed

+18
-1
lines changed

1 file changed

+18
-1
lines changed

.github/workflows/build.yml

Lines changed: 18 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -229,7 +229,7 @@ jobs:
229229
- start-self-hosted-runner
230230
env:
231231
# Location of artifacts generated by build.
232-
ARTIFACTS_PATH: electron/build/dist/build-artifacts/
232+
ARTIFACTS_PATH: electron/build/dist/build-artifacts
233233
strategy:
234234
fail-fast: false
235235
matrix:
@@ -364,6 +364,23 @@ jobs:
364364
name: ${{ env.JOB_TRANSFER_ARTIFACT }}
365365
path: ${{ env.JOB_TRANSFER_ARTIFACT }}
366366

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+
367384
- name: Install dependencies
368385
run: yarn
369386

0 commit comments

Comments
 (0)