mirror of
https://github.com/30hours/blah2.git
synced 2024-11-08 12:25:42 +00:00
Add push to jenkins
This commit is contained in:
parent
6e1e7c0c27
commit
76d83721eb
1 changed files with 13 additions and 1 deletions
14
Jenkinsfile
vendored
14
Jenkinsfile
vendored
|
@ -1,6 +1,12 @@
|
|||
pipeline {
|
||||
agent any
|
||||
|
||||
environment {
|
||||
GHCR_REGISTRY = "ghcr.io"
|
||||
GHCR_USERNAME = credentials('30hours')
|
||||
GHCR_TOKEN = credentials('ghcr-login')
|
||||
}
|
||||
|
||||
stages {
|
||||
stage('Checkout') {
|
||||
steps {
|
||||
|
@ -12,7 +18,7 @@ pipeline {
|
|||
script {
|
||||
echo 'Building the project'
|
||||
blah2 = docker.build("30hours/blah2", "--file ./Dockerfile .")
|
||||
blah2_api = docker.build("30hours/blah2", "--file ./api/Dockerfile .")
|
||||
blah2_api = docker.build("30hours/blah2", "--file ./api/Dockerfile ./api")
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -24,6 +30,12 @@ pipeline {
|
|||
stage('Push') {
|
||||
steps {
|
||||
echo 'Pushing the application'
|
||||
|
||||
docker.withRegistry("${GHCR_REGISTRY}", "${GHCR_TOKEN}") {
|
||||
blah2.push()
|
||||
blah2_api.push()
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue