Modify prerelease condition in CI workflow
Updated prerelease condition to exclude 'alpha' branch.
This commit is contained in:
parent
231010c0cb
commit
d7805d6053
|
|
@ -340,5 +340,5 @@ jobs:
|
||||||
uses: softprops/action-gh-release@v2
|
uses: softprops/action-gh-release@v2
|
||||||
with:
|
with:
|
||||||
token: ${{ secrets.GITHUB_TOKEN }}
|
token: ${{ secrets.GITHUB_TOKEN }}
|
||||||
prerelease: ${{ contains(github.ref, 'alpha') || contains(github.ref, 'beta') || contains(github.ref, 'rc') }}
|
prerelease: ${{ contains(github.ref, 'beta') || contains(github.ref, 'rc') }}
|
||||||
generate_release_notes: true
|
generate_release_notes: true
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue