From 8052343f8b336845535d156ad95dac2adefe5b37 Mon Sep 17 00:00:00 2001 From: Guillaume Berche Date: Wed, 3 Jan 2024 19:02:23 +0100 Subject: [PATCH] on-commits.yml: create final releases not draft ones --- .github/workflows/on-commits.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/on-commits.yml b/.github/workflows/on-commits.yml index 37e9b939..2fbb4b2e 100644 --- a/.github/workflows/on-commits.yml +++ b/.github/workflows/on-commits.yml @@ -171,6 +171,7 @@ jobs: uses: ncipollo/release-action@v1.13.0 with: tag: ${{ steps.create-bosh-release.outputs.version }} + draft: false allowUpdates: true # > indicates if we should update a release if it already exists. omitDraftDuringUpdate: true # > Indicates if the draft flag should be omitted during updates. The draft flag will still be applied for newly created releases. This will preserve the existing draft state during updates. generateReleaseNotes: true @@ -180,3 +181,4 @@ jobs: artifactErrorsFailBuild: true +