4 Commits
Author SHA1 Message Date
opencodecabilloteu 210ba20f26 Merge pull request 'chore(deps): update docker/build-push-action action to v7.4.0' (#23) from renovate/docker-build-push-action-7.x into master
Main Release / hadolint (push) Successful in 10s
Main Release / test (push) Successful in 27s
Renovate / renovate (push) Successful in 53s
Main Release / build (push) Successful in 28s
Main Release / tag (push) Successful in 13s
Tag Release / hadolint (push) Successful in 10s
Tag Release / test (push) Successful in 28s
Tag Release / build-push (push) Successful in 1m0s
2026-09-17 05:01:12 -04:00
renovate 02546aab32 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
PR Checks / build-test (pull_request) Successful in 31s
2026-09-17 08:35:46 +00:00
jcabillot e976d7d87b Merge pull request 'chore: remove legacy GitLab CI and Jenkins files' (#22) from ci/remove-legacy-ci into master
Main Release / test (push) Successful in 54s
Renovate / renovate (push) Successful in 1m28s
Main Release / hadolint (push) Successful in 18s
Main Release / build (push) Successful in 40s
Main Release / tag (push) Successful in 40s
Tag Release / hadolint (push) Successful in 13s
Tag Release / test (push) Successful in 40s
Tag Release / build-push (push) Successful in 1m44s
Reviewed-on: #22
2026-09-02 09:51:37 -04:00
OpenCode Cabillot fd04e6909d chore: remove legacy GitLab CI and Jenkins files
PR Checks / hadolint (pull_request) Successful in 20s
PR Checks / build-test (pull_request) Successful in 57s
2026-09-02 13:50:02 +00:00
3 changed files with 2 additions and 40 deletions
+1 -1
View File
@@ -40,7 +40,7 @@ jobs:
images: jcabillot/send
tags: |
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:
context: .
file: pkg/Dockerfile
+1 -1
View File
@@ -35,7 +35,7 @@ jobs:
tags: |
type=ref,event=tag
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:
context: .
file: pkg/Dockerfile
Vendored
-38
View File
@@ -1,38 +0,0 @@
pipeline {
environment {
registry = 'https://registry.hub.docker.com'
registryCredential = 'dockerhub_jcabillot'
dockerImage = 'jcabillot/send'
}
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}'
}
}
}
}
}
}