Merge pull request #74 from cloudblue/retry_also_on_net_errors #65
Workflow file for this run
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: Deploy Connect Python OpenAPI Client | |
on: | |
push: | |
tags: | |
- '*' | |
jobs: | |
deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: '3.10' | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install poetry | |
poetry install --no-root | |
- name: Linting | |
run: | | |
poetry run flake8 | |
- name: Testing | |
run: | | |
poetry run pytest | |
- name: Extract tag name | |
uses: actions/github-script@v6 | |
id: tag | |
with: | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
result-encoding: string | |
script: | | |
return context.payload.ref.replace(/refs\/tags\//, '') | |
- name: Build and publish | |
env: | |
TWINE_USERNAME: ${{ secrets.PYPI_USERNAME }} | |
TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }} | |
run: | | |
poetry version ${{ steps.tag.outputs.result }} | |
poetry build | |
poetry publish -u $TWINE_USERNAME -p $TWINE_PASSWORD |