From cece33860976fc5fe44f41f927af49e853ebc8a3 Mon Sep 17 00:00:00 2001 From: AMIAY Date: Tue, 20 Jan 2026 09:48:15 +0100 Subject: [PATCH] Update release.yml --- .github/workflows/release.yml | 23 ++++++++++++----------- 1 file changed, 12 insertions(+), 11 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 840e8ab..55beea3 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -78,14 +78,15 @@ jobs: run: ls -R artifacts - name: Create Release - uses: softprops/action-gh-release@v2 - with: - tag_name: ${{ github.ref_type == 'tag' && github.ref_name || 'manual-' + github.sha }} - name: ${{ github.ref_type == 'tag' && github.ref_name || 'Manual build ' + github.sha }} - files: | - artifacts/linux-builds/**/* - artifacts/windows-builds/**/* - artifacts/macos-builds/**/* - generate_release_notes: true - draft: false - prerelease: false + uses: softprops/action-gh-release@v2 + with: + tag_name: ${{ github.ref_type == 'tag' && github.ref_name || format('manual-{0}', github.sha) }} + name: ${{ github.ref_type == 'tag' && github.ref_name || format('Manual build {0}', github.sha) }} + files: | + artifacts/linux-builds/**/* + artifacts/windows-builds/**/* + artifacts/macos-builds/**/* + generate_release_notes: true + draft: false + prerelease: false +