wooga / atlas-release

gradle release plugin for atlas library packages
https://wooga.github.io/atlas-release
Apache License 2.0
0 stars 2 forks source link

Fixes prerelease github release flag (#127) #129

Closed Joaquimmnetto closed 2 years ago

Joaquimmnetto commented 2 years ago

Description

Github prerelease flag was set using project.status which was causing it to always be true. Fixes this issue by now using the version plugin isFinal flag to check if something is prerelease or not. Still uses project.status as a fallback to avoid potential breaking changes.

Changes