diff options
author | Daniel Nilsson <dannil+github@protonmail.com> | 2024-11-15 22:38:41 +0100 |
---|---|---|
committer | Hannu Nyman <hannu.nyman@iki.fi> | 2024-11-17 09:45:19 +0200 |
commit | 22518fa15f68ffa99af1af5d92f952eac780fb11 (patch) | |
tree | dcce480b5399e379303a5ecfe18f26038209e29c /.github | |
parent | 69d379af9ad47c6efc445f902dea0751789ee0aa (diff) |
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>
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/build.yml | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 982a3447b4..68ca564bae 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -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 |