chore: prepare v3.0.0 beta 3 public beta #32
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Release Dry Run | |
| on: | |
| workflow_dispatch: | |
| pull_request: | |
| paths: | |
| - pyproject.toml | |
| - ".github/workflows/release.yml" | |
| - ".github/workflows/release_dry_run.yml" | |
| - "fl_controller/FLStudioPilot/device_FLStudioPilot.py" | |
| - "scripts/check_release_tag.py" | |
| - "src/**" | |
| permissions: | |
| contents: read | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-python@v5 | |
| with: | |
| python-version: "3.12" | |
| - name: Build distributions | |
| run: | | |
| python -m pip install --upgrade pip build twine | |
| python -m build | |
| python -m twine check dist/* | |
| - name: Check controller artifact | |
| run: test -f fl_controller/FLStudioPilot/device_FLStudioPilot.py |