Skip to content

Commit

Permalink
ci: create release as release and not as draft
Browse files Browse the repository at this point in the history
Set the draft option to false to create a release instead of a draft
which has to be manually released.
  • Loading branch information
lievenhey committed May 6, 2024
1 parent ca7b999 commit f7d547c
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/release-appimage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit f7d547c

Please sign in to comment.