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