From bdbbae19c9002287b458e0581df42286e94e4729 Mon Sep 17 00:00:00 2001 From: Apaczer <94932128+Apaczer@users.noreply.github.com> Date: Tue, 28 Mar 2023 13:08:36 +0200 Subject: [PATCH] upload rootfs.ext4 in action build as part of submodules pack (#24) * extract rootfs from *.yml build & grab only rootfs.ext4 as in gen. img script --- .github/workflows/rootfs.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/.github/workflows/rootfs.yml b/.github/workflows/rootfs.yml index ebb5379b..bc384c99 100644 --- a/.github/workflows/rootfs.yml +++ b/.github/workflows/rootfs.yml @@ -74,6 +74,12 @@ jobs: path: ${{ inputs.submodule || '.' }}/output/graphs/ if-no-files-found: error # 'error', 'warn', 'ignore'; defaults to `warn` + - uses: actions/upload-artifact@v2 + with: + name: rootfs (uClibc) + path: ${{ inputs.submodule || '.' }}/output/images/rootfs.ext4 + if-no-files-found: error # 'error', 'warn', 'ignore'; defaults to `warn` + build-image-musl: runs-on: ubuntu-22.04 env: @@ -135,4 +141,10 @@ jobs: with: name: build-graphs (musl) path: ${{ inputs.submodule || '.' }}/output/graphs/ + if-no-files-found: error # 'error', 'warn', 'ignore'; defaults to `warn` + + - uses: actions/upload-artifact@v2 + with: + name: rootfs (musl) + path: ${{ inputs.submodule || '.' }}/output/images/rootfs.ext4 if-no-files-found: error # 'error', 'warn', 'ignore'; defaults to `warn` \ No newline at end of file