Skip to content

Commit

Permalink
Update main.yml
Browse files Browse the repository at this point in the history
Change releases from draft to public (allow users to download new versions that are typically hidden until an official release).

Also change release name from vnext to bleeding_edge
  • Loading branch information
curtishall authored Jul 26, 2023
1 parent 0b01a64 commit 1e3b278
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,10 +46,10 @@ jobs:
if: ${{ github.event_name == 'push' }}
uses: softprops/action-gh-release@v1
with:
draft: true
prerelease: false
draft: false
prerelease: true
body: ""
tag_name: "vnext"
tag_name: "bleeding_edge"
files: |
bluecherry-android-arm64-v8a-release.apk
bluecherry-android-armeabi-v7a-release.apk
Expand Down Expand Up @@ -159,10 +159,10 @@ jobs:
if: ${{ github.event_name == 'push' }}
uses: softprops/action-gh-release@v1
with:
draft: true
prerelease: false
draft: false
prerelease: true
body: ""
tag_name: "vnext"
tag_name: "bleeding_edge"
files: |
Bluecherry-latest.AppImage
token: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 1e3b278

Please sign in to comment.