From 5749db747cd4305b81d840e97d2e13031eba1258 Mon Sep 17 00:00:00 2001 From: Penner4242 <71649966+Penner4242@users.noreply.github.com> Date: Thu, 13 Jun 2024 09:34:54 +0200 Subject: [PATCH] Update for Nextcloud version 28 and version 29 --- .drone.yml | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) diff --git a/.drone.yml b/.drone.yml index ccaa929..01b5a0c 100644 --- a/.drone.yml +++ b/.drone.yml @@ -109,6 +109,36 @@ steps: build_args: - NC_VERSION=27-fpm-alpine +- name: nextcloud 28 + image: plugins/docker + when: + branch: + - master + settings: + repo: yavook/kiwi-nextcloud + tags: 28 + username: + from_secret: DOCKER_USERNAME + password: + from_secret: DOCKER_PASSWORD + build_args: + - NC_VERSION=28-fpm-alpine + +- name: nextcloud 29 + image: plugins/docker + when: + branch: + - master + settings: + repo: yavook/kiwi-nextcloud + tags: 29 + username: + from_secret: DOCKER_USERNAME + password: + from_secret: DOCKER_PASSWORD + build_args: + - NC_VERSION=29-fpm-alpine + - name: parallelism provider image: alpine depends_on: @@ -119,3 +149,5 @@ steps: - nextcloud 25 - nextcloud 26 - nextcloud 27 + - nextcloud 28 + - nextcloud 29