Update .gitea/workflows/action.yaml
Build and Publish / build (push) Successful in 15s
Build and Publish / Build and Deploy Docs (push) Failing after 25s

combined daq, common and GUi wheels into 1
This commit is contained in:
2026-03-30 14:02:06 +02:00
parent 21d64b3f7c
commit d798028d14
+1 -17
View File
@@ -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')