From 1415f3b37a723a3e9642fbf4e410a3141198dde4 Mon Sep 17 00:00:00 2001 From: Tianling Shen Date: Tue, 3 Sep 2024 21:38:16 +0800 Subject: [PATCH] ci(build-ipk): specify asset name Signed-off-by: Tianling Shen --- .github/workflows/build-ipk.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build-ipk.yml b/.github/workflows/build-ipk.yml index 01bbc64b..fbbb1b12 100644 --- a/.github/workflows/build-ipk.yml +++ b/.github/workflows/build-ipk.yml @@ -52,13 +52,12 @@ jobs: if: github.event_name != 'release' with: name: ${{ env.ASSET_NAME }} - path: .github/*.ipk + path: .github/${{ env.ASSET_NAME }} - name: Publishing to GitHub Releases uses: svenstaro/upload-release-action@v2 if: github.event_name == 'release' with: repo_token: ${{ github.token }} - file: .github/*.ipk + file: .github/${{ env.ASSET_NAME }} tag: ${{ github.ref }} - file_glob: true