Merge list with dict; allow hidden files; hatch cleanup #11
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] | |
jobs: | |
release: | |
name: π Release | |
runs-on: ubuntu-latest | |
environment: | |
name: pypi | |
url: https://pypi.org/p/fmf | |
permissions: | |
id-token: write # For pypi-publish | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Build package | |
run: pipx run hatch build | |
- name: Publish to PyPI | |
uses: pypa/gh-action-pypi-publish@release/v1 |