Added cpl-mail
Some checks failed
Build on push / prepare (push) Failing after 3s

This commit is contained in:
2025-09-15 18:33:06 +02:00
parent 784632a0b4
commit 1aefe7fe7b
39 changed files with 330 additions and 301 deletions

View File

@@ -0,0 +1,40 @@
name: Build projects
run-name: Build projects
on:
workflow_call:
inputs:
version_suffix:
description: 'Suffix for version (z.B. "dev", "alpha", "beta")'
required: false
type: string
jobs:
prepare:
uses: ./.gitea/workflows/prepare.yaml
with:
version_suffix: ${{ inputs.version_suffix }}
secrets: inherit
core:
uses: ./.gitea/workflows/package.yaml
with:
working_directory: src/cpl_core
secrets: inherit
query:
uses: ./.gitea/workflows/package.yaml
with:
working_directory: src/cpl_query
secrets: inherit
translation:
uses: ./.gitea/workflows/package.yaml
with:
working_directory: src/cpl_translation
secrets: inherit
mail:
uses: ./.gitea/workflows/package.yaml
with:
working_directory: src/cpl_mail
secrets: inherit