Skip to content

Commit

Permalink
ci: create release as release and not as draft second try
Browse files Browse the repository at this point in the history
Seems like the draft option didn't work. This patch uses the github cli
to force remove the draft flag.
  • Loading branch information
lievenhey committed May 6, 2024
1 parent ca7b999 commit 7999369
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 7999369

Please sign in to comment.