Browse Source

add title to dev releases (#195)

Jean-Robin 1 year ago
parent
commit
99c5ac14f2
1 changed files with 1 additions and 1 deletions
  1. 1 1
      .github/workflows/release-dev.yml

+ 1 - 1
.github/workflows/release-dev.yml

@@ -125,7 +125,7 @@ jobs:
       - name: Create/update release and tag
         run: |
             echo "Creating release ${{ steps.current-version.outputs.VERSION }}"
-            gh release create ${{ steps.current-version.outputs.VERSION }} ./dist/taipy-${{ steps.current-version.outputs.VERSION }}.tar.gz --prerelease --notes "Release Draft ${{ steps.current-version.outputs.VERSION }}"
+            gh release create ${{ steps.current-version.outputs.VERSION }} ./dist/taipy-${{ steps.current-version.outputs.VERSION }}.tar.gz --prerelease --title ${{ steps.current-version.outputs.VERSION }} --notes "Release Draft ${{ steps.current-version.outputs.VERSION }}"
         env:
           GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}