ci: test build and upload dists #1
This file contains 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: Build distributions for PyPI | |
on: [push, release] # TODO: change to just release | |
jobs: | |
build: | |
name: Build | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install uv | |
uses: astral-sh/setup-uv@v3 | |
with: | |
version: "0.4.30" | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version-file: ".python-version" | |
- name: Build | |
run: uv build | |
- name: Test wheels | |
run: | | |
uv venv --no-project testwhl | |
. testwhl/bin/activate | |
uv pip install dist/*.whl | |
cd tests/test_ssh | |
./run.sh | |
- name: Test wheels | |
run: | | |
uv venv --no-project testsdist | |
. testsdist/bin/activate | |
uv pip install dist/*.tar.gz | |
cd tests/test_ssh | |
./run.sh | |
- uses: actions/upload-artifact@v4 | |
with: | |
path: dist/* | |
upload: | |
name: Upload to PyPI | |
needs: [build] | |
runs-on: ubuntu-latest | |
environment: pypi | |
permissions: | |
id-token: write | |
steps: | |
- uses: actions/download-artifact@v4 | |
- name: Publish | |
run: uv publish |