Files
moveoncomplete/.drone.jsonnet
Matthias Bilger 4a6a8755dc
All checks were successful
continuous-integration/drone/push Build is passing
updated drone config to jsonnet
2025-10-18 18:02:31 +02:00

22 lines
524 B
Jsonnet

[
{
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'],
},
]