You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Dec 5, 2024. It is now read-only.
When executing a final release for a WDK project the actual github release is marked as prerelease.
I checked the code and it looks like we changed the check values during the gradle upgrade process.
Currently we check for project.status != 'final'.
as seen here:
Description
When executing a final release for a WDK project the actual github release is marked as
prerelease
.I checked the code and it looks like we changed the check values during the gradle upgrade process.
Currently we check for
project.status != 'final'
.as seen here:
atlas-release/src/main/groovy/wooga/gradle/release/ReleasePlugin.groovy
Line 238 in a16777d
The old code did check
githubPublishTask.setPrerelease({ project.status != 'release' })
We need to fix this and maybe provide a test case to verify this.
The text was updated successfully, but these errors were encountered: