name: Deploy Python Package on: [push] jobs: deploy: runs-on: ubuntu-latest steps: - uses: actions/checkout@v5 - name: Set up Python 3.13 uses: actions/setup-python@v6 with: python-version: "3.13" - name: Install Node.js, NPM and Yarn uses: actions/setup-node@v6 with: node-version: 24 - name: Install Linux dependencies run: | sudo apt install -y portaudio19-dev libhamlib-dev libhamlib-utils build-essential cmake patchelf - name: Install Python dependencies run: | python -m pip install --upgrade pip pip install -r requirements.txt pip install wheel build - name: Build GUI working-directory: freedata_gui run: | npm i npm run build - name: Build package run: | python -m build - name: Publish to PyPI uses: pypa/gh-action-pypi-publish@v1.13.0 if: startsWith(github.ref, 'refs/tags/v') with: user: __token__ password: ${{ secrets.PYPI_API_TOKEN }}