From 0bb197bd10dfe08c135d79cc65eaaded19f910a7 Mon Sep 17 00:00:00 2001 From: Thomas Richard Date: Fri, 15 Mar 2024 18:33:12 +0100 Subject: [PATCH] .github/workflows: archive sysupgrade images Signed-off-by: Thomas Richard --- .github/workflows/openwrt-feed-st.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/openwrt-feed-st.yml b/.github/workflows/openwrt-feed-st.yml index 7f43066..f53cba3 100644 --- a/.github/workflows/openwrt-feed-st.yml +++ b/.github/workflows/openwrt-feed-st.yml @@ -37,8 +37,13 @@ jobs: - name: Build id: build run: make -j4 -C openwrt || make -C openwrt -j1 V=s - - name: 'Upload Artifact' + - name: 'Archive factory image' uses: actions/upload-artifact@v4 with: name: openwrt-stm32-stm32mp1-${{ matrix.devices }}-ext4-factory.img.gz path: openwrt/bin/targets/stm32/stm32mp1/openwrt-stm32-stm32mp1-${{ matrix.devices }}-ext4-factory.img.gz + - name: 'Archive sysupgrade image' + uses: actions/upload-artifact@v4 + with: + name: openwrt-stm32-stm32mp1-${{ matrix.devices }}-ext4-sysupgrade.img.gz + path: openwrt/bin/targets/stm32/stm32mp1/openwrt-stm32-stm32mp1-${{ matrix.devices }}-ext4-sysupgrade.img.gz