From d6772c96c2f3d7b042369e85df1646748731e991 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dani=C3=ABlle=20Huisman?= Date: Sat, 5 Apr 2025 14:01:24 +0200 Subject: [PATCH] ci: fix release binaries tag name --- .github/workflows/release.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 52c30b7..d06e431 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -17,6 +17,9 @@ jobs: name: Release runs-on: ubuntu-latest + outputs: + version: ${{ steps.extract-version.outputs.VERSION }} + steps: - name: Generate GitHub App token id: app-token @@ -159,10 +162,12 @@ jobs: if: ${{ !contains(matrix.target, '-windows-') }} uses: softprops/action-gh-release@v2 with: + tag_name: ${{ needs.release.outputs.version }} files: target/${{ matrix.package }}-${{ github.ref_name }}-${{ matrix.target }}.tar.gz - name: Upload release asset (zip) if: ${{ contains(matrix.target, '-windows-') }} uses: softprops/action-gh-release@v2 with: + tag_name: ${{ needs.release.outputs.version }} files: target/${{ matrix.package }}-${{ github.ref_name }}-${{ matrix.target }}.zip