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 8e54107 commit 53a79c2
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/release-appimage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit 53a79c2

Please sign in to comment.