Bump version to 0.1.9 #20
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: | |
workflow_dispatch: | |
push: | |
tags: | |
- "v*" | |
jobs: | |
publish_to_pypi: | |
name: Publish to PyPI | |
runs-on: ubuntu-latest | |
permissions: | |
id-token: write | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 # Get tags for automatic versioning | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: "3.11" | |
- name: Install Poetry | |
uses: snok/install-poetry@v1 | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade build twine | |
- name: Check GITHUB_REF matches package version | |
id: check-tag | |
uses: samuelcolvin/[email protected] | |
with: | |
version_file_path: moneykit/__init__.py | |
- name: Build source and wheel distributions | |
run: | | |
poetry build | |
ls -lh dist | |
twine check --strict dist/* | |
- name: Publish package distributions to PyPI | |
uses: pypa/gh-action-pypi-publish@release/v1 | |
with: | |
print-hash: true | |
verbose: true | |
# TOOD: Remove when repo is public (Trusted publishing is already configured) | |
# user: __token__ | |
# password: ${{ secrets.PYPI_TOKEN }} |