From db7af0a0cf8ab87e13bef3b7dd48ba26b9c21b81 Mon Sep 17 00:00:00 2001 From: Jan Kleinert Date: Thu, 4 May 2023 12:52:04 +0200 Subject: [PATCH] fix tagname and assets --- .github/actions/release/action.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/actions/release/action.yml b/.github/actions/release/action.yml index bbb556f65..4ae2e7220 100644 --- a/.github/actions/release/action.yml +++ b/.github/actions/release/action.yml @@ -66,16 +66,16 @@ runs: id: create_release uses: softprops/action-gh-release@v1 with: - tag_name: ${{ env.version }} + tag_name: v${{ env.version }} name: TiGL ${{ env.version }} body: ${{ steps.changelog.outputs.content }} draft: true prerelease: false token: ${{ inputs.GH_TOKEN }} files: | - ./win-installer/TIGL-${{ env.version }}-win64.exe - ./win-package/TIGL-${{ env.version }}-win64.zip - ./macos-package/TIGL-${{ env.version }}-Darwin.dmg + TIGL-${{ env.version }}-win64.exe + TIGL-${{ env.version }}-win64.zip + TIGL-${{ env.version }}-Darwin.dmg - name: Checkout tigl-website repo uses: actions/checkout@v3