Files
dockerhub-autobuild/.drone.star
Christian Richter 8dd97592ae
Some checks reported errors
continuous-integration/drone/pr Build was killed
attempt 2
Signed-off-by: Christian Richter <crichter@owncloud.com>
2022-05-11 17:03:42 +02:00

35 lines
675 B
Plaintext

def main(ctx):
return [
step("amd64"),
step("arm64"),
]
def step(arch):
return {
"kind": "pipeline",
"type": "docker",
"name": "docker-%s" % (arch),
"platform": {
"os": "linux",
"arch": arch,
},
"steps": [
{
"name": "dryrun",
"image": "plugins/docker",
"settings": {
"dockerfile": "motsognir/Dockerfile",
"dry_run": "true",
"purge":"true",
"repo": "dragonchaser/dockerhub-autobuild",
"tag": "latest"
}
},
],
"trigger": {
"ref": [
"refs/pull/**",
],
},
}