Page MenuHomeDevCentral

Jenkinsfile
No OneTemporary

Jenkinsfile

node {
stage('checkout') {
git url: 'https://devcentral.nasqueron.org/source/docker-openfire.git', branch: 'main'
}
stage('validate-git-tag') {
def version = readFile "VERSION"
def tag_lookup = sh (
script: 'git tag -l $VERSION',
returnStdout: true
).trim()
assert tag_lookup : "Tag $VERSION is missing."
}
}

File Metadata

Mime Type
text/plain
Expires
Thu, Sep 18, 20:39 (6 h, 4 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
2991626
Default Alt Text
Jenkinsfile (392 B)

Event Timeline