Skip to content

Merge branch 'feature/extendable'; v13.1.0 #5

Merge branch 'feature/extendable'; v13.1.0

Merge branch 'feature/extendable'; v13.1.0 #5

Workflow file for this run

name: Release
on:
push:
tags:
- '*'
jobs:
pypi-publish:
if: startsWith(github.ref, 'refs/tags')
name: Upload release to PyPI
runs-on: ubuntu-latest
environment:
name: pypi
url: https://pypi.org/p/python-slip39
permissions:
id-token: write # IMPORTANT: this permission is mandatory for trusted publishing
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
- name: Build
run: |
python -m pip install -r requirements-dev.txt
python -m build .
- name: Publish package distributions to PyPI
uses: pypa/gh-action-pypi-publish@release/v1