mirror of
https://github.com/openwrt/luci.git
synced 2025-12-26 11:16:38 +04:00
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:
committed by
Hannu Nyman
parent
69d379af9a
commit
22518fa15f
7
.github/workflows/build.yml
vendored
7
.github/workflows/build.yml
vendored
@@ -54,15 +54,18 @@ jobs:
|
|||||||
env:
|
env:
|
||||||
ARCH: ${{ matrix.arch }}-${{ env.BRANCH }}
|
ARCH: ${{ matrix.arch }}-${{ env.BRANCH }}
|
||||||
FEEDNAME: packages_ci
|
FEEDNAME: packages_ci
|
||||||
|
V: s
|
||||||
|
|
||||||
- name: Move created packages to project dir
|
- 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
|
- name: Store packages
|
||||||
uses: actions/upload-artifact@v4
|
uses: actions/upload-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: ${{ matrix.arch}}-packages
|
name: ${{ matrix.arch}}-packages
|
||||||
path: "*.ipk"
|
path: |
|
||||||
|
*.ipk
|
||||||
|
*.apk
|
||||||
|
|
||||||
- name: Store logs
|
- name: Store logs
|
||||||
uses: actions/upload-artifact@v4
|
uses: actions/upload-artifact@v4
|
||||||
|
|||||||
Reference in New Issue
Block a user