@@ -52,14 +52,14 @@ jobs:
52
52
- name : Upload BN checksum artefact
53
53
uses : actions/upload-artifact@v4
54
54
with :
55
- name : Linux_amd64_checksum
55
+ name : Linux_amd64_checksum_bn
56
56
path : ./dist/${{ steps.make_dist.outputs.archive_dir }}/build/nimbus_beacon_node.sha512sum
57
57
retention-days : 2
58
58
59
59
- name : Upload VC checksum artefact
60
60
uses : actions/upload-artifact@v4
61
61
with :
62
- name : Linux_amd64_checksum
62
+ name : Linux_amd64_checksum_vc
63
63
path : ./dist/${{ steps.make_dist.outputs.archive_dir }}/build/nimbus_validator_client.sha512sum
64
64
retention-days : 2
65
65
@@ -106,14 +106,14 @@ jobs:
106
106
- name : Upload BN checksum artefact
107
107
uses : actions/upload-artifact@v4
108
108
with :
109
- name : Linux_arm64_checksum
109
+ name : Linux_arm64_checksum_bn
110
110
path : ./dist/${{ steps.make_dist.outputs.archive_dir }}/build/nimbus_beacon_node.sha512sum
111
111
retention-days : 2
112
112
113
113
- name : Upload VC checksum artefact
114
114
uses : actions/upload-artifact@v4
115
115
with :
116
- name : Linux_arm64_checksum
116
+ name : Linux_arm64_checksum_vc
117
117
path : ./dist/${{ steps.make_dist.outputs.archive_dir }}/build/nimbus_validator_client.sha512sum
118
118
retention-days : 2
119
119
@@ -160,14 +160,14 @@ jobs:
160
160
- name : Upload BN checksum artefact
161
161
uses : actions/upload-artifact@v4
162
162
with :
163
- name : Linux_arm_checksum
163
+ name : Linux_arm_checksum_bn
164
164
path : ./dist/${{ steps.make_dist.outputs.archive_dir }}/build/nimbus_beacon_node.sha512sum
165
165
retention-days : 2
166
166
167
167
- name : Upload VC checksum artefact
168
168
uses : actions/upload-artifact@v4
169
169
with :
170
- name : Linux_arm_checksum
170
+ name : Linux_arm_checksum_vc
171
171
path : ./dist/${{ steps.make_dist.outputs.archive_dir }}/build/nimbus_validator_client.sha512sum
172
172
retention-days : 2
173
173
@@ -206,14 +206,14 @@ jobs:
206
206
- name : Upload BN checksum artefact
207
207
uses : actions/upload-artifact@v4
208
208
with :
209
- name : Windows_amd64_checksum
209
+ name : Windows_amd64_checksum_bn
210
210
path : ./dist/${{ steps.make_dist.outputs.archive_dir }}/build/nimbus_beacon_node.sha512sum
211
211
retention-days : 2
212
212
213
213
- name : Upload VC checksum artefact
214
214
uses : actions/upload-artifact@v4
215
215
with :
216
- name : Windows_amd64_checksum
216
+ name : Windows_amd64_checksum_vc
217
217
path : ./dist/${{ steps.make_dist.outputs.archive_dir }}/build/nimbus_validator_client.sha512sum
218
218
retention-days : 2
219
219
@@ -252,14 +252,14 @@ jobs:
252
252
- name : Upload BN checksum artefact
253
253
uses : actions/upload-artifact@v4
254
254
with :
255
- name : macOS_amd64_checksum
255
+ name : macOS_amd64_checksum_bn
256
256
path : ./dist/${{ steps.make_dist.outputs.archive_dir }}/build/nimbus_beacon_node.sha512sum
257
257
retention-days : 2
258
258
259
259
- name : Upload VC checksum artefact
260
260
uses : actions/upload-artifact@v4
261
261
with :
262
- name : macOS_amd64_checksum
262
+ name : macOS_amd64_checksum_vc
263
263
path : ./dist/${{ steps.make_dist.outputs.archive_dir }}/build/nimbus_validator_client.sha512sum
264
264
retention-days : 2
265
265
@@ -298,14 +298,14 @@ jobs:
298
298
- name : Upload BN checksum artefact
299
299
uses : actions/upload-artifact@v4
300
300
with :
301
- name : macOS_arm64_checksum
301
+ name : macOS_arm64_checksum_bn
302
302
path : ./dist/${{ steps.make_dist.outputs.archive_dir }}/build/nimbus_beacon_node.sha512sum
303
303
retention-days : 2
304
304
305
305
- name : Upload VC checksum artefact
306
306
uses : actions/upload-artifact@v4
307
307
with :
308
- name : macOS_arm64_checksum
308
+ name : macOS_arm64_checksum_vc
309
309
path : ./dist/${{ steps.make_dist.outputs.archive_dir }}/build/nimbus_validator_client.sha512sum
310
310
retention-days : 2
311
311
@@ -330,17 +330,23 @@ jobs:
330
330
\`\`\`text
331
331
EOF
332
332
echo '# Linux AMD64' >> release_notes.md
333
- cat Linux_amd64_checksum/* >> release_notes.md
333
+ cat Linux_amd64_checksum_bn/* >> release_notes.md
334
+ cat Linux_amd64_checksum_vc/* >> release_notes.md
334
335
echo '# Linux ARM64' >> release_notes.md
335
- cat Linux_arm64_checksum/* >> release_notes.md
336
+ cat Linux_arm64_checksum_bn/* >> release_notes.md
337
+ cat Linux_arm64_checksum_vc/* >> release_notes.md
336
338
echo '# Linux ARM' >> release_notes.md
337
- cat Linux_arm_checksum/* >> release_notes.md
339
+ cat Linux_arm_checksum_bn/* >> release_notes.md
340
+ cat Linux_arm_checksum_vc/* >> release_notes.md
338
341
echo '# Windows AMD64' >> release_notes.md
339
- cat Windows_amd64_checksum/* >> release_notes.md
342
+ cat Windows_amd64_checksum_bn/* >> release_notes.md
343
+ cat Windows_amd64_checksum_vc/* >> release_notes.md
340
344
echo '# macOS AMD64' >> release_notes.md
341
- cat macOS_amd64_checksum/* >> release_notes.md
345
+ cat macOS_amd64_checksum_bn/* >> release_notes.md
346
+ cat macOS_amd64_checksum_vc/* >> release_notes.md
342
347
echo '# macOS ARM64' >> release_notes.md
343
- cat macOS_arm64_checksum/* >> release_notes.md
348
+ cat macOS_arm64_checksum_bn/* >> release_notes.md
349
+ cat macOS_arm64_checksum_vc/* >> release_notes.md
344
350
echo '```' >> release_notes.md
345
351
346
352
- name : Delete tag
@@ -370,14 +376,20 @@ jobs:
370
376
failOnError : false
371
377
name : |
372
378
Linux_amd64_archive
373
- Linux_amd64_checksum
379
+ Linux_amd64_checksum_bn
380
+ Linux_amd64_checksum_vc
374
381
Linux_arm64_archive
375
- Linux_arm64_checksum
382
+ Linux_arm64_checksum_bn
383
+ Linux_arm64_checksum_vc
376
384
Linux_arm_archive
377
- Linux_arm_checksum
385
+ Linux_arm_checksum_bn
386
+ Linux_arm_checksum_vc
378
387
Windows_amd64_archive
379
- Windows_amd64_checksum
388
+ Windows_amd64_checksum_bn
389
+ Windows_amd64_checksum_vc
380
390
macOS_amd64_archive
381
- macOS_amd64_checksum
391
+ macOS_amd64_checksum_bn
392
+ macOS_amd64_checksum_vc
382
393
macOS_arm64_archive
383
- macOS_arm64_checksum
394
+ macOS_arm64_checksum_bn
395
+ macOS_arm64_checksum_vc
0 commit comments