refactor(poetry): Set build-backend
of poetry to latest recommended…
#293
Workflow file for this run
This file contains hidden or 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: | |
pull_request: | |
types: [closed] | |
branches: [main] | |
jobs: | |
release: | |
if: github.head_ref == 'knope/release' && github.event.pull_request.merged == true | |
runs-on: ubuntu-latest | |
permissions: | |
id-token: write | |
steps: | |
- uses: actions/[email protected] | |
- name: Install Hatchling | |
run: pip install --upgrade hatchling | |
- name: Build | |
run: hatchling build | |
- name: Push to PyPI | |
uses: pypa/[email protected] | |
with: | |
attestations: true |