From 2f4528efd6b4eb60161d9e3e51dbcd06c3c3bb14 Mon Sep 17 00:00:00 2001 From: Jan Kleinert Date: Thu, 4 May 2023 11:25:58 +0200 Subject: [PATCH] fix release action --- .github/actions/release/action.yml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/actions/release/action.yml b/.github/actions/release/action.yml index d47531f20..bbb556f65 100644 --- a/.github/actions/release/action.yml +++ b/.github/actions/release/action.yml @@ -57,13 +57,17 @@ runs: with: name: html-documentation path: html-documentation + + - name: ls + shell: bash -l {0} + run: ls -lhrt - name: Create Release id: create_release uses: softprops/action-gh-release@v1 with: - tag_name: ${{ github.ref }} - release_name: TiGL ${{ env.version }} + tag_name: ${{ env.version }} + name: TiGL ${{ env.version }} body: ${{ steps.changelog.outputs.content }} draft: true prerelease: false