Updated ci
Some checks failed
Build on push / prepare (push) Successful in 10s
Build on push / core (push) Successful in 24s
Build on push / query (push) Failing after 1m44s

This commit is contained in:
2025-09-15 15:05:02 +02:00
parent 2d2bb86720
commit 207273bb02
7 changed files with 85 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