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
Mon, Nov 17, 15:54 (1 d, 20 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
3174064
Default Alt Text
Jenkinsfile (392 B)

Event Timeline