From 53a79c2838223beecde425654c999398bf9df655 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 | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release-appimage.yml b/.github/workflows/release-appimage.yml index a12412bd..b6d3ac23 100644 --- a/.github/workflows/release-appimage.yml +++ b/.github/workflows/release-appimage.yml @@ -30,13 +30,19 @@ jobs: with: 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: