Updated ci
Some checks failed
Build on push / prepare (push) Successful in 8s
Build on push / query (push) Successful in 18s
Build on push / core (push) Failing after 18s

This commit is contained in:
2025-09-15 15:05:02 +02:00
parent 2d2bb86720
commit 516fa3fb7e
8 changed files with 87 additions and 52 deletions

View File

@@ -0,0 +1,29 @@
name: Build on push
run-name: Build on push
on:
push:
branches:
- dev
jobs:
prepare:
uses: ./.gitea/workflows/prepare.yaml
with:
version_suffix: 'dev'
secrets: inherit
core:
needs: prepare
uses: ./.gitea/workflows/package.yaml
defaults:
run:
working-directory: src/cpl_core
secrets: inherit
query:
needs: prepare
uses: ./.gitea/workflows/package.yaml
defaults:
run:
working-directory: src/cpl_query
secrets: inherit