Released 1.35.8 via make release #558
Workflow file for this run
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: paasta-pypi | |
| on: | |
| push: | |
| tags: | |
| - v* | |
| jobs: | |
| tox: | |
| runs-on: ubuntu-22.04 | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| toxenv: | |
| - py310-linux,docs,tests | |
| - general_itests | |
| env: | |
| DOCKER_REGISTRY: "" | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - uses: actions/setup-python@v2 | |
| with: | |
| python-version: '3.10' | |
| - run: python -m pip install --upgrade pip | |
| - run: pip install -r requirements-gha.txt | |
| - run: tox -e ${{ matrix.toxenv }} | |
| pypi: | |
| # lets run tests before we push anything to pypi, much like we do internally | |
| needs: tox | |
| runs-on: ubuntu-22.04 | |
| env: | |
| DOCKER_REGISTRY: "" | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - uses: actions/setup-python@v2 | |
| with: | |
| python-version: '3.10' | |
| - run: pip install build | |
| # this will create both a source distribution and a wheel | |
| - run: python -m build | |
| # and finally, upload the distributions to public PyPI | |
| - uses: pypa/[email protected] | |
| with: | |
| password: ${{ secrets.pypi_password }} |