@@ -52,14 +52,14 @@ jobs:
5252 - name : Upload BN checksum artefact
5353 uses : actions/upload-artifact@v4
5454 with :
55- name : Linux_amd64_checksum
55+ name : Linux_amd64_checksum_bn
5656 path : ./dist/${{ steps.make_dist.outputs.archive_dir }}/build/nimbus_beacon_node.sha512sum
5757 retention-days : 2
5858
5959 - name : Upload VC checksum artefact
6060 uses : actions/upload-artifact@v4
6161 with :
62- name : Linux_amd64_checksum
62+ name : Linux_amd64_checksum_vc
6363 path : ./dist/${{ steps.make_dist.outputs.archive_dir }}/build/nimbus_validator_client.sha512sum
6464 retention-days : 2
6565
@@ -106,14 +106,14 @@ jobs:
106106 - name : Upload BN checksum artefact
107107 uses : actions/upload-artifact@v4
108108 with :
109- name : Linux_arm64_checksum
109+ name : Linux_arm64_checksum_bn
110110 path : ./dist/${{ steps.make_dist.outputs.archive_dir }}/build/nimbus_beacon_node.sha512sum
111111 retention-days : 2
112112
113113 - name : Upload VC checksum artefact
114114 uses : actions/upload-artifact@v4
115115 with :
116- name : Linux_arm64_checksum
116+ name : Linux_arm64_checksum_vc
117117 path : ./dist/${{ steps.make_dist.outputs.archive_dir }}/build/nimbus_validator_client.sha512sum
118118 retention-days : 2
119119
@@ -160,14 +160,14 @@ jobs:
160160 - name : Upload BN checksum artefact
161161 uses : actions/upload-artifact@v4
162162 with :
163- name : Linux_arm_checksum
163+ name : Linux_arm_checksum_bn
164164 path : ./dist/${{ steps.make_dist.outputs.archive_dir }}/build/nimbus_beacon_node.sha512sum
165165 retention-days : 2
166166
167167 - name : Upload VC checksum artefact
168168 uses : actions/upload-artifact@v4
169169 with :
170- name : Linux_arm_checksum
170+ name : Linux_arm_checksum_vc
171171 path : ./dist/${{ steps.make_dist.outputs.archive_dir }}/build/nimbus_validator_client.sha512sum
172172 retention-days : 2
173173
@@ -206,14 +206,14 @@ jobs:
206206 - name : Upload BN checksum artefact
207207 uses : actions/upload-artifact@v4
208208 with :
209- name : Windows_amd64_checksum
209+ name : Windows_amd64_checksum_bn
210210 path : ./dist/${{ steps.make_dist.outputs.archive_dir }}/build/nimbus_beacon_node.sha512sum
211211 retention-days : 2
212212
213213 - name : Upload VC checksum artefact
214214 uses : actions/upload-artifact@v4
215215 with :
216- name : Windows_amd64_checksum
216+ name : Windows_amd64_checksum_vc
217217 path : ./dist/${{ steps.make_dist.outputs.archive_dir }}/build/nimbus_validator_client.sha512sum
218218 retention-days : 2
219219
@@ -252,14 +252,14 @@ jobs:
252252 - name : Upload BN checksum artefact
253253 uses : actions/upload-artifact@v4
254254 with :
255- name : macOS_amd64_checksum
255+ name : macOS_amd64_checksum_bn
256256 path : ./dist/${{ steps.make_dist.outputs.archive_dir }}/build/nimbus_beacon_node.sha512sum
257257 retention-days : 2
258258
259259 - name : Upload VC checksum artefact
260260 uses : actions/upload-artifact@v4
261261 with :
262- name : macOS_amd64_checksum
262+ name : macOS_amd64_checksum_vc
263263 path : ./dist/${{ steps.make_dist.outputs.archive_dir }}/build/nimbus_validator_client.sha512sum
264264 retention-days : 2
265265
@@ -298,14 +298,14 @@ jobs:
298298 - name : Upload BN checksum artefact
299299 uses : actions/upload-artifact@v4
300300 with :
301- name : macOS_arm64_checksum
301+ name : macOS_arm64_checksum_bn
302302 path : ./dist/${{ steps.make_dist.outputs.archive_dir }}/build/nimbus_beacon_node.sha512sum
303303 retention-days : 2
304304
305305 - name : Upload VC checksum artefact
306306 uses : actions/upload-artifact@v4
307307 with :
308- name : macOS_arm64_checksum
308+ name : macOS_arm64_checksum_vc
309309 path : ./dist/${{ steps.make_dist.outputs.archive_dir }}/build/nimbus_validator_client.sha512sum
310310 retention-days : 2
311311
@@ -330,17 +330,23 @@ jobs:
330330 \`\`\`text
331331 EOF
332332 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
334335 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
336338 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
338341 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
340344 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
342347 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
344350 echo '```' >> release_notes.md
345351
346352 - name : Delete tag
@@ -370,14 +376,20 @@ jobs:
370376 failOnError : false
371377 name : |
372378 Linux_amd64_archive
373- Linux_amd64_checksum
379+ Linux_amd64_checksum_bn
380+ Linux_amd64_checksum_vc
374381 Linux_arm64_archive
375- Linux_arm64_checksum
382+ Linux_arm64_checksum_bn
383+ Linux_arm64_checksum_vc
376384 Linux_arm_archive
377- Linux_arm_checksum
385+ Linux_arm_checksum_bn
386+ Linux_arm_checksum_vc
378387 Windows_amd64_archive
379- Windows_amd64_checksum
388+ Windows_amd64_checksum_bn
389+ Windows_amd64_checksum_vc
380390 macOS_amd64_archive
381- macOS_amd64_checksum
391+ macOS_amd64_checksum_bn
392+ macOS_amd64_checksum_vc
382393 macOS_arm64_archive
383- macOS_arm64_checksum
394+ macOS_arm64_checksum_bn
395+ macOS_arm64_checksum_vc
0 commit comments