Files
AareDAQ/.gitea/workflows/action.yaml
T
leonarski_f b1c4feaee2
Build and Publish / build (push) Successful in 21s
VERSION: 0.2.3
2025-06-26 13:48:21 +02:00

48 lines
1.2 KiB
YAML

name: Build and Publish
on:
push:
tags:
- '*'
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Set Up Python Environment
run: |
python3 -m venv venv # Create a virtual environment
source venv/bin/activate
pip install twine build
mkdir dist/
- name: Build the common wheel
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
env:
TWINE_USERNAME: "__token__" # Username for Twine when using token-based auth
TWINE_PASSWORD: ${{ secrets.PIP_REPOSITORY_API_TOKEN }} # Use the secret for authentication
run: |
source venv/bin/activate
twine upload --repository-url https://gitea.psi.ch/api/packages/mx/pypi dist/*