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

This commit is contained in:
2025-09-15 17:09:10 +02:00
parent 4719c32457
commit 700726befc
2 changed files with 11 additions and 8 deletions

View File

@@ -15,15 +15,13 @@ jobs:
core: core:
needs: prepare needs: prepare
uses: ./.gitea/workflows/package.yaml uses: ./.gitea/workflows/package.yaml
defaults: with:
run: working_directory: src/cpl_core
working-directory: src/cpl_core
secrets: inherit secrets: inherit
query: query:
needs: prepare needs: prepare
uses: ./.gitea/workflows/package.yaml uses: ./.gitea/workflows/package.yaml
defaults: with:
run: working_directory: src/cpl_query
working-directory: src/cpl_query
secrets: inherit secrets: inherit

View File

@@ -8,12 +8,17 @@ on:
description: 'Suffix for version (z.B. "dev", "alpha", "beta")' description: 'Suffix for version (z.B. "dev", "alpha", "beta")'
required: false required: false
type: string type: string
working_directory:
required: true
type: string
jobs: jobs:
build: build:
runs-on: [ runner ] runs-on: [ runner ]
container: git.sh-edraft.de/sh-edraft.de/act-runner:latest container: git.sh-edraft.de/sh-edraft.de/act-runner:latest
defaults:
run:
working-directory: ${{ inputs.working_directory }}
steps: steps:
- name: Clone Repository - name: Clone Repository
uses: https://github.com/actions/checkout@v3 uses: https://github.com/actions/checkout@v3
@@ -40,7 +45,7 @@ jobs:
- name: Build Package - name: Build Package
run: | run: |
python -m build --sdist --wheel --outdir dist python -m build --outdir dist
- name: Login to registry git.sh-edraft.de - name: Login to registry git.sh-edraft.de
uses: https://github.com/docker/login-action@v1 uses: https://github.com/docker/login-action@v1