[patch] Fix readme example formatting #55
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
# Dynamically updates the pyproject.toml for release to pypi | |
# On PRs just lets you preview the new toml | |
# On actual publication events, publishes to pypi | |
name: Release (and/or preview) | |
on: | |
pull_request: | |
release: | |
types: [ published ] | |
jobs: | |
pyproject-flow: | |
uses: pyiron/actions/.github/workflows/[email protected] | |
secrets: inherit | |
with: | |
semantic-upper-bound: 'minor' | |
publish-to-pypi: ${{ github.event_name == 'release' && github.event.action == 'published' }} |