Drop Jenkins

This commit is contained in:
Lauri Võsandi 2023-08-17 09:23:14 +03:00
parent 3cfd3bb614
commit fee31f2735
1 changed files with 0 additions and 20 deletions

20
Jenkinsfile vendored
View File

@ -1,20 +0,0 @@
#!/usr/bin/groovy
image = "wildduck-exporter"
label = "latest"
build = null
node {
stage("Checkout") {
checkout scm
}
stage("Build") {
build = docker.build("kspaceee/${image}")
}
stage("Push") {
docker.withRegistry("https://registry.hub.docker.com", "dockerhub-kspace") {
build.push(label)
}
}
}