diff --git a/.github/workflows/build-openwrt.yml b/.github/workflows/build-openwrt.yml index 1f56784..a4e7aa4 100644 --- a/.github/workflows/build-openwrt.yml +++ b/.github/workflows/build-openwrt.yml @@ -137,6 +137,13 @@ jobs: name: OpenWrt_firmware${{ env.DEVICE_NAME }}${{ env.FILE_DATE }} path: ${{ env.FIRMWARE }} + - name: Upload packages directory + uses: actions/upload-artifact@main + if: steps.compile.outputs.status == 'success' && env.UPLOAD_BIN_DIR == 'true' + with: + name: OpenWrt_packages${{ env.DEVICE_NAME }}${{ env.FILE_DATE }} + path: openwrt/bin/packages + - name: Upload firmware to cowtransfer id: cowtransfer if: steps.organize.outputs.status == 'success' && env.UPLOAD_COWTRANSFER == 'true' && !cancelled()