From d798028d14f2dcae3ddc764358c56d800a5ed779 Mon Sep 17 00:00:00 2001 From: appleb_m Date: Mon, 30 Mar 2026 14:02:06 +0200 Subject: [PATCH] Update .gitea/workflows/action.yaml combined daq, common and GUi wheels into 1 --- .gitea/workflows/action.yaml | 18 +----------------- 1 file changed, 1 insertion(+), 17 deletions(-) diff --git a/.gitea/workflows/action.yaml b/.gitea/workflows/action.yaml index 79686358..eeb8928b 100644 --- a/.gitea/workflows/action.yaml +++ b/.gitea/workflows/action.yaml @@ -33,26 +33,10 @@ jobs: pip install twine build mkdir dist/ - - name: Build the common wheel + - name: Build the package run: | source venv/bin/activate - cd common/ python -m build - mv dist/* ../dist - - - name: Build the GUI wheel - run: | - source venv/bin/activate - cd gui/ - python -m build - mv dist/* ../dist - - - name: Build the DAQ wheel - run: | - source venv/bin/activate - cd daq/ - python -m build - mv dist/* ../dist - name: Upload Package to Gitea PyPI if: github.ref == 'refs/heads/master' && contains(github.event.head_commit.message, 'build and publish')