Skip to content

Deploy

Deploy #5

Workflow file for this run

name: Deploy
on:
release:
types: [published]
workflow_dispatch:
permissions:
contents: read
jobs:
run-ci:
uses: ./.github/workflows/ci.yml
secrets: inherit
deploy:
needs: run-ci
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v3
with:
python-version: '3.7'
- name: Update pip
run: |
python -m pip install --upgrade pip
- name: Mypy check
run: |
pip install mypy
mypy --python-version 3.7 src/
- name: Test
run: |
pip install pytest
pytest src/tsidpy/*.py --doctest-modules
- name: Build package
run: |
pip install build
python -m build
- name: Publish package
uses: pypa/gh-action-pypi-publish@27b31702a0e7fc50959f5ad993c78deac1bdfc29
with:
user: __token__
password: ${{ secrets.PYPI_API_TOKEN }}