Log a warning when an executable is found, but does not have the exec… #52
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' }} |