Skip to content

Commit

Permalink
fixup! fixup! fixup! .github/workflows/gen-images.yml: refactor
Browse files Browse the repository at this point in the history
  • Loading branch information
classabbyamp committed Feb 16, 2024
1 parent 1646847 commit 5c80442
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion .github/workflows/gen-images.yml
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ jobs:
- name: Upload artifacts
uses: actions/upload-artifact@v4
with:
name: void-live-${{ needs.prepare.outputs.datecode }}
name: void-iso-${{ needs.prepare.outputs.datecode }}
path: |
distdir-*/*
if-no-files-found: error
Expand Down Expand Up @@ -270,3 +270,15 @@ jobs:
!distdir-*/*ROOTFS*
!distdir-*/*PLATFORMFS*
if-no-files-found: error

merge-artifacts:
name: Combine artifacts
runs-on: ubuntu-latest
needs: [build-live-isos, build-rootfs, build-platformfs, build-sbc-img]

steps:
- name: Download artifacts
uses: actions/download-artifact@v4
with:
merge-multiple: true
- run: ls -R

0 comments on commit 5c80442

Please sign in to comment.