1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-01-11 00:08:30 +01:00

improvement: mark github releases as prerelease (#1808)

This marks alpha and beta releases as prereleases, so github's release
tab doesn't show beta releases as our latest releases anymore
This commit is contained in:
Christopher Kolstad 2022-07-12 15:34:10 +02:00 committed by GitHub
parent 783a039980
commit ea8b78669e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -22,5 +22,6 @@ jobs:
tag_name: ${{ github.ref }}
release_name: ${{ github.ref }}
body: ${{ steps.github_release.outputs.changelog }}
prerelease: ${{ contains(github.ref, 'beta') || contains(github.ref, 'alpha') }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN}}