@@ -254,40 +254,6 @@ jobs:
254254 name : Windows_amd64_checksum
255255 path : ./dist/${{ steps.make_dist.outputs.archive_dir }}/build/nimbus_validator_client.sha512sum
256256 retention-days : 2
257- build-macos-amd64 :
258- name : macOS AMD64 release asset
259- runs-on : ubuntu-latest
260- steps :
261- - name : Checkout code
262- uses : actions/checkout@v2
263- - name : Build project
264- id : make_dist
265- run : |
266- make dist-macos
267- cd dist
268- ARCHIVE=$(echo nimbus-eth2_macOS_amd64_*.tar.gz)
269- echo "::set-output name=archive::"${ARCHIVE}
270- echo "::set-output name=archive_dir::"${ARCHIVE%.tar.gz}
271- tar -xzf ${ARCHIVE} ${ARCHIVE%.tar.gz}/build/nimbus_beacon_node.sha512sum
272- tar -xzf ${ARCHIVE} ${ARCHIVE%.tar.gz}/build/nimbus_validator_client.sha512sum
273- - name : Upload archive artefact
274- uses : actions/upload-artifact@v2
275- with :
276- name : macOS_amd64_archive
277- path : ./dist/${{ steps.make_dist.outputs.archive }}
278- retention-days : 2
279- - name : Upload BN checksum artefact
280- uses : actions/upload-artifact@v2
281- with :
282- name : macOS_amd64_checksum
283- path : ./dist/${{ steps.make_dist.outputs.archive_dir }}/build/nimbus_beacon_node.sha512sum
284- retention-days : 2
285- - name : Upload VC checksum artefact
286- uses : actions/upload-artifact@v2
287- with :
288- name : macOS_amd64_checksum
289- path : ./dist/${{ steps.make_dist.outputs.archive_dir }}/build/nimbus_validator_client.sha512sum
290- retention-days : 2
291257 build-macos-arm64 :
292258 name : macOS ARM64 release asset
293259 runs-on : ubuntu-latest
@@ -324,7 +290,7 @@ jobs:
324290 retention-days : 2
325291 prepare-release :
326292 name : Prepare release draft
327- needs : [build-amd64, build-arm64, build-arm, build-win64, build-macos-amd64, build-macos- arm64]
293+ needs : [build-amd64, build-arm64, build-arm, build-win64, build-macos-arm64]
328294 runs-on : ubuntu-latest
329295 steps :
330296 - name : Download artefacts
@@ -354,8 +320,6 @@ jobs:
354320 cat Linux_arm_checksum/* >> release_notes.md
355321 echo '# Windows AMD64' >> release_notes.md
356322 cat Windows_amd64_checksum/* >> release_notes.md
357- echo '# macOS AMD64' >> release_notes.md
358- cat macOS_amd64_checksum/* >> release_notes.md
359323 echo '# macOS ARM64' >> release_notes.md
360324 cat macOS_arm64_checksum/* >> release_notes.md
361325 echo '```' >> release_notes.md
@@ -376,7 +340,6 @@ jobs:
376340 Linux_arm_archive/*
377341 Linux_arm_packages/*
378342 Windows_amd64_archive/*
379- macOS_amd64_archive/*
380343 macOS_arm64_archive/*
381344 - name : Delete artefacts
382345 uses : geekyeggo/delete-artifact@v1
@@ -394,8 +357,6 @@ jobs:
394357 Linux_arm_packages
395358 Windows_amd64_archive
396359 Windows_amd64_checksum
397- macOS_amd64_archive
398- macOS_amd64_checksum
399360 macOS_arm64_archive
400361 macOS_arm64_checksum
401362
0 commit comments