mirror of
https://github.com/sekwah41/Advanced-Portals.git
synced 2024-11-14 22:55:36 +01:00
17 lines
503 B
Groovy
17 lines
503 B
Groovy
|
|
def branch = System.getenv("GITHUB_REF")
|
|
if(branch != null) {
|
|
branch = branch.replace('refs/heads/', '')
|
|
}
|
|
def isRelease = System.getenv("IS_RELEASE") == "true"
|
|
|
|
def snapshotName = (branch == null || branch.startsWith("release-please")) ? "SNAPSHOT" : branch
|
|
def githubSha = System.getenv("GITHUB_SHA")
|
|
def shaRef = githubSha != null ? "-${githubSha.substring(0, 8)}" : ""
|
|
|
|
ext.branch = branch
|
|
ext.snapshotName = snapshotName
|
|
ext.githubSha = githubSha
|
|
ext.shaRef = shaRef
|
|
ext.isRelease = isRelease
|