MCLOUD custom versions #88
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
### | |
# SPDX-License-Identifier: AGPL-3.0 | |
# | |
# Author: Bernd rederlechner <bernd.rederlechner@t-systems.com | |
# | |
# Assemble a customisation for recent trunk or a stable branch | |
# If trunk, no backports are considered. For stable, only the | |
# backports targetted for this baseline are considered. | |
# | |
# Assembly fails if a PR does not merge automatically. | |
# | |
name: MCLOUD custom versions | |
on: | |
workflow_dispatch: | |
jobs: | |
build-custom: | |
strategy: | |
fail-fast: false | |
matrix: | |
custombase: [ "master", "stable26", "stable27", "stable28" ] | |
uses: nextmcloud/.github/.github/workflows/nmc-custom-assembly.yml@nmc/2027-build-test-rtoth | |
with: | |
trunk: "master" | |
stable: ${{ matrix.custombase }} | |
result: ${{ format('customisation-{0}-{1}', github.actor, matrix.custombase) }} | |
secrets: inherit |