Manual upload to testpypi #2
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: Manual upload to testpypi | |
| on: | |
| workflow_dispatch: | |
| jobs: | |
| upload: | |
| name: Upload to TestPyPI | |
| runs-on: ubuntu-latest | |
| permissions: | |
| id-token: write | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| - name: Set up Python | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: "3.14" | |
| - name: Set up uv | |
| uses: astral-sh/setup-uv@v7 | |
| - name: Generate pyside files | |
| run: uv run --no-dev python -m tools.generate_pyside_files | |
| - name: Get version from hatch | |
| run: | | |
| RAW_VERSION=$(uvx --with hatch hatch version) | |
| echo "Raw version: $RAW_VERSION" | |
| echo "RAW_VERSION=$RAW_VERSION" >> ${GITHUB_OUTPUT} | |
| CLEAN_VERSION="${RAW_VERSION%+*}" | |
| git config user.name "gha" | |
| git config user.email "gha@localhost" | |
| git tag -f -a "v$CLEAN_VERSION" -m "Local tag" | |
| echo "Created temporary tag: v$CLEAN_VERSION" | |
| - name: Build the wheel | |
| run: uv build --wheel --force-pep517 | |
| - name: Upload to TestPyPI | |
| uses: pypa/gh-action-pypi-publish@release/v1 | |
| with: | |
| verbose: true | |
| repository-url: https://test.pypi.org/legacy/ |