From f7d547ce7fea4ee638df77d4fc6e4c8000be2d12 Mon Sep 17 00:00:00 2001 From: Lieven Hey Date: Mon, 6 May 2024 14:42:10 +0200 Subject: [PATCH] ci: create release as release and not as draft Set the draft option to false to create a release instead of a draft which has to be manually released. --- .github/workflows/release-appimage.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release-appimage.yml b/.github/workflows/release-appimage.yml index 277e318c..53c9fb78 100644 --- a/.github/workflows/release-appimage.yml +++ b/.github/workflows/release-appimage.yml @@ -31,13 +31,18 @@ jobs: name: "continuous" tag: "continuous" prerelease: true - draft: false body: "The newest version directly from the master branch. THIS IS BLEEDING ENDGE AND WILL MOST LIKELY CONTAIN UNKOWN BUGS." token: ${{ secrets.GITHUB_TOKEN }} artifacts: | ${{ github.workspace }}/hotspot-debuginfo-* ${{ github.workspace }}/*.AppImage + - name: Release latest release + run: | + gh release edit continuous --draft=false || true + env: + GH_TOKEN: ${{ github.token }} + - name: Create release PR uses: google-github-actions/release-please-action@v4 with: