4 Commits
Author SHA1 Message Date
opencodecabilloteu 8ecbfbb613 Merge pull request 'chore(deps): update docker/build-push-action action to v7.4.0' (#50) from renovate/docker-build-push-action-7.x into main
Docker Build and Push / test (push) Successful in 1m55s
Main Release / hadolint (push) Successful in 8s
Docker Build and Push / integration-test (push) Successful in 2m4s
Main Release / test (push) Successful in 2m13s
Main Release / build (push) Successful in 19s
Docker Build and Push / build (push) Successful in 2m26s
Main Release / tag (push) Successful in 12s
Tag Release / hadolint (push) Successful in 9s
Tag Release / test (push) Successful in 20s
Tag Release / build-push (push) Successful in 2m57s
2026-09-17 05:32:23 -04:00
renovate 8a4fdb6d49 chore(deps): update docker/build-push-action action to v7.4.0
renovate/stability-days Updates have met minimum release age requirement
PR Checks / hadolint (pull_request) Successful in 10s
Docker Build and Push / test (pull_request) Successful in 2m6s
PR Checks / build-test (pull_request) Successful in 24s
Docker Build and Push / integration-test (pull_request) Successful in 2m21s
Docker Build and Push / build (pull_request) Successful in 1m58s
2026-09-17 09:12:14 +00:00
jcabillot 32cd00b8c6 Merge pull request 'chore: remove legacy GitLab CI and Jenkins files' (#47) from ci/remove-legacy-ci into main
Docker Build and Push / integration-test (push) Successful in 3m56s
Main Release / hadolint (push) Successful in 21s
Docker Build and Push / test (push) Successful in 4m54s
Main Release / test (push) Successful in 3m27s
Main Release / build (push) Successful in 36s
Docker Build and Push / build (push) Successful in 9m35s
Main Release / tag (push) Successful in 20s
Tag Release / hadolint (push) Successful in 12s
Tag Release / test (push) Successful in 29s
Tag Release / build-push (push) Successful in 6m46s
Reviewed-on: #47
2026-09-02 09:49:33 -04:00
OpenCode Cabillot c77d8b4fe6 chore: remove legacy GitLab CI and Jenkins files
PR Checks / hadolint (pull_request) Successful in 15s
Docker Build and Push / test (pull_request) Successful in 5m0s
PR Checks / build-test (pull_request) Successful in 3m59s
Docker Build and Push / integration-test (pull_request) Successful in 5m16s
Docker Build and Push / build (pull_request) Successful in 10m15s
2026-09-02 13:46:30 +00:00
3 changed files with 2 additions and 40 deletions
+1 -1
View File
@@ -43,7 +43,7 @@ jobs:
images: jcabillot/mcp-maildir images: jcabillot/mcp-maildir
tags: | tags: |
type=raw,value=${{ steps.get-latest-tag.outputs.tag }}-latest,enable=${{ steps.get-latest-tag.outputs.tag != '' }} type=raw,value=${{ steps.get-latest-tag.outputs.tag }}-latest,enable=${{ steps.get-latest-tag.outputs.tag != '' }}
- uses: docker/build-push-action@53b7df96c91f9c12dcc8a07bcb9ccacbed38856a # v7.3.0 - uses: docker/build-push-action@c3c9e263c25d99ce0380d002d59b67737d91b0dc # v7.4.0
with: with:
context: . context: .
file: pkg/Dockerfile file: pkg/Dockerfile
+1 -1
View File
@@ -38,7 +38,7 @@ jobs:
tags: | tags: |
type=ref,event=tag type=ref,event=tag
type=ref,event=tag,suffix=-latest type=ref,event=tag,suffix=-latest
- uses: docker/build-push-action@53b7df96c91f9c12dcc8a07bcb9ccacbed38856a # v7.3.0 - uses: docker/build-push-action@c3c9e263c25d99ce0380d002d59b67737d91b0dc # v7.4.0
with: with:
context: . context: .
file: pkg/Dockerfile file: pkg/Dockerfile
Vendored
-38
View File
@@ -1,38 +0,0 @@
pipeline {
environment {
registry = 'https://registry.hub.docker.com'
registryCredential = 'dockerhub_jcabillot'
dockerImage = 'jcabillot/mcp-maildir'
}
agent any
triggers {
cron('@midnight')
}
stages {
stage('Clone repository') {
steps{
checkout scm
}
}
stage('Build image') {
steps{
sh 'docker build --force-rm=true --no-cache=true --pull -t ${dockerImage} -f pkg/Dockerfile .'
}
}
stage('Deploy Image') {
steps{
script {
withCredentials([usernamePassword(credentialsId: 'dockerhub_jcabillot', usernameVariable: 'DOCKER_USER', passwordVariable: 'DOCKER_PASS')]) {
sh 'docker login --username ${DOCKER_USER} --password ${DOCKER_PASS}'
sh 'docker push ${dockerImage}'
}
}
}
}
}
}