From 3a2b08d04c9947e771c6da171382992121d42455 Mon Sep 17 00:00:00 2001 From: sbwml Date: Tue, 17 Jun 2025 05:45:36 +0800 Subject: [PATCH] ci: add apk package support Signed-off-by: sbwml --- .github/workflows/release-build.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release-build.yml b/.github/workflows/release-build.yml index 36c2ef2..e34dad8 100644 --- a/.github/workflows/release-build.yml +++ b/.github/workflows/release-build.yml @@ -47,6 +47,7 @@ jobs: - x86_64 sdk: - openwrt-24.10 + - SNAPSHOT steps: - uses: actions/checkout@v4 @@ -69,7 +70,9 @@ jobs: uses: actions/upload-artifact@v4 with: name: ${{ matrix.arch }}-${{ matrix.sdk }} - path: bin/packages/${{ matrix.arch }}/packages_ci/*.ipk + path: | + bin/packages/${{ matrix.arch }}/packages_ci/*.apk + bin/packages/${{ matrix.arch }}/packages_ci/*.ipk - name: Create compress files run: | @@ -82,5 +85,5 @@ jobs: token: ${{ secrets.GITHUB_TOKEN }} allowUpdates: true replacesArtifacts: true - prerelease: true + prerelease: false artifacts: "${{ matrix.sdk }}-${{ matrix.arch }}.tar.gz"