Skip to content

Commit 5e16204

Browse files
committed
build: update node and actually download artifacts
1 parent d0d22a5 commit 5e16204

File tree

2 files changed

+12
-2
lines changed

2 files changed

+12
-2
lines changed

.github/workflows/release.yaml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -122,11 +122,21 @@ jobs:
122122
with:
123123
name: ghz-linux-x86_64.tar.gz
124124
path: .
125+
- name: Download releases from github_build
126+
uses: actions/download-artifact@v3
127+
with:
128+
name: ghz-linux-arm64.tar.gz
129+
path: .
125130
- name: Download releases from github_build
126131
uses: actions/download-artifact@v3
127132
with:
128133
name: ghz-darwin-x86_64.tar.gz
129134
path: .
135+
- name: Download releases from github_build
136+
uses: actions/download-artifact@v3
137+
with:
138+
name: ghz-darwin-arm64.tar.gz
139+
path: .
130140
- name: Download releases from github_build
131141
uses: actions/download-artifact@v3
132142
with:

.github/workflows/website.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,10 @@ jobs:
1717
steps:
1818
- name: Check out code
1919
uses: actions/checkout@v3
20-
- name: Use Node.js 12
20+
- name: Use Node.js 18
2121
uses: actions/setup-node@v3
2222
with:
23-
node-version: 12.x
23+
node-version: 18.x
2424
- name: Build webpage
2525
run: |
2626
npm ci

0 commit comments

Comments
 (0)