From 80e9d39327da2c9a5ba35bf8ffc9a7dd419e3b00 Mon Sep 17 00:00:00 2001 From: davidon-top Date: Sat, 9 Dec 2023 14:16:47 +0000 Subject: [PATCH] fix(cicd): fix lib name again --- .github/workflows/release.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 61d5755..ee0e56f 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -30,13 +30,13 @@ jobs: uses: actions/upload-artifact@v3 with: path: target/x86_64-unknown-linux-gnu/release/lib${{ env.binary }}.so - name: lib${{ env.binary }}.so + name: ${{ env.binary }} retention-days: 1 - name: Upload binaries to release uses: svenstaro/upload-release-action@v2 with: repo_token: ${{ secrets.GITHUB_TOKEN }} - file: lib${{ env.binary }}.so + file: ${{ env.binary }} asset_name: lib${{ env.binary }}.so tag: ${{ github.ref }} overwrite: true