updated drone config to jsonnet
continuous-integration/drone/push Build is passing

This commit is contained in:
2025-10-18 18:02:31 +02:00
parent 7279185f1a
commit 4a6a8755dc
2 changed files with 22 additions and 32 deletions
+22
View File
@@ -0,0 +1,22 @@
[
{
kind: 'pipeline',
type: 'docker',
name: 'docker-gitea',
steps: [
{
name: 'build',
image: 'plugins/docker',
settings: {
tags: ['latest', '${DRONE_COMMIT_SHA:0:8}'],
dockerfile: 'Dockerfile',
registry: 'gitea.pb42.de',
repo: 'gitea.pb42.de/matthias/moveoncomplete',
config: { from_secret: 'dockerconfigjson' },
},
},
],
trigger: { event: ['push'] },
image_pull_secrets: ['dockerconfigjson'],
},
]