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