From e999eddee54a75135cb447f293c65cb43a432a06 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ismael=20Gonz=C3=A1lez?= Date: Sat, 6 Nov 2021 20:17:46 +0100 Subject: [PATCH] Generate a draft release MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Ismael González --- .github/workflows/release.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 697fed0..e1dc499 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -50,7 +50,7 @@ jobs: - name: Checkout uses: actions/checkout@v2 - - name: Get the version + - name: Get version id: version shell: bash run: | @@ -130,5 +130,6 @@ jobs: - name: Publish new release uses: softprops/action-gh-release@v1 with: - name: ${{ steps.version.outputs.version }} + name: "Release ${{ steps.version.outputs.version }}" files: "${{ env.ARTIFACT_NAME }}/*" + draft: true