nextcloud-fpm/.drone.yml
Aaron Riedel 1dfeb16d03
Some checks reported errors
continuous-integration/drone/push Build encountered an error
change CI to fully build the image
2024-07-22 15:15:30 +02:00

49 lines
No EOL
955 B
YAML

kind: pipeline
type: kubernetes
name: deploy
steps:
- name: patch
image: git.ar21.de/aaron/kustomize-ci
commands:
- "sh patch-nextcloud.sh"
- name: docker
image: thegeeklab/drone-docker-buildx
privileged: true
settings:
registry: git.ar21.de
username:
from_secret: REGISTRY_USER
password:
from_secret: REGISTRY_PASS
repo: git.ar21.de/aaron/nextcloud-fpm-test
tags: latest
platforms:
- linux/arm64
- linux/amd64
when:
branch:
- main
- name: docker-build
image: thegeeklab/drone-docker-buildx
privileged: true
settings:
registry: git.ar21.de
username:
from_secret: REGISTRY_USER
password:
from_secret: REGISTRY_PASS
repo: git.ar21.de/aaron/nextcloud-fpm
tags: latest
platforms:
- linux/arm64
- linux/amd64
dry_run: true
when:
branch:
exclude:
- main
when:
event:
include:
- push
- custom