Release #10
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: Release | |
on: | |
release: | |
types: [published] | |
workflow_dispatch: | |
jobs: | |
publish: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Wait for build check to succeed | |
uses: lewagon/wait-on-check-action@v1.3.1 | |
with: | |
ref: ${{ github.ref }} | |
check-name: build | |
repo-token: ${{ secrets.GITHUB_TOKEN }} | |
wait-interval: 5 | |
- uses: actions/checkout@v3 | |
- name: Set up Python | |
id: setup-python | |
uses: actions/setup-python@v4 | |
- name: Cache virtualenv | |
id: cache-venv | |
uses: actions/cache@v3 | |
with: | |
path: .venv | |
# same as used in the ci workflow for reuse across workflows | |
key: ${{ runner.os }}-py${{ steps.setup-python.outputs.python-version }}-venv-${{ hashFiles('pyproject.toml') }} | |
- name: make install | |
if: steps.cache-venv.outputs.cache-hit != 'true' | |
run: make install | |
- name: Make and test distribution | |
run: make dist test-dist | |
- name: Publish to pypi | |
env: | |
TWINE_USERNAME: __token__ | |
TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }} | |
run: make publish |