Upload Package #12
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: Upload Package | |
on: | |
release: | |
types: [created] | |
jobs: | |
deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
# See https://github.com/actions/runner-images/issues/6185 | |
- name: Install keyring for python | |
run: sudo apt install gnome-keyring | |
- name: Set up Python 3.9.12 | |
uses: actions/setup-python@v2 | |
with: | |
python-version: 3.9.12 | |
- name: Set up Poetry | |
uses: abatilo/[email protected] | |
with: | |
poetry-version: 1.4.1 | |
- name: Install dependencies | |
run: poetry install --with dev | |
- name: Test with pytest | |
run: poetry run pytest ./tests | |
- name: Build package | |
run: poetry build | |
- name: Publish package | |
env: | |
POETRY_PYPI_TOKEN_PYPI: ${{ secrets.PYPI_UPLOAD_TOKEN }} | |
run: poetry publish |