ci: account for APK as default on main branch

With APK defaulted on openwrt:main, we should include packages with the
.apk file extension as artifacts. Also default the logging to V=s as
otherwise the APK version check won't be printed to stdout.

Signed-off-by: Daniel Nilsson <dannil+github@protonmail.com>
This commit is contained in:
Daniel Nilsson
2024-11-15 22:38:41 +01:00
committed by Hannu Nyman
parent 69d379af9a
commit 22518fa15f

View File

@@ -54,15 +54,18 @@ jobs:
env:
ARCH: ${{ matrix.arch }}-${{ env.BRANCH }}
FEEDNAME: packages_ci
V: s
- name: Move created packages to project dir
run: cp bin/packages/${{ matrix.arch }}/packages_ci/*.ipk . || true
run: cp bin/packages/${{ matrix.arch }}/packages_ci/* . || true
- name: Store packages
uses: actions/upload-artifact@v4
with:
name: ${{ matrix.arch}}-packages
path: "*.ipk"
path: |
*.ipk
*.apk
- name: Store logs
uses: actions/upload-artifact@v4