Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion .github/workflows/continuous-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,10 @@ jobs:
name: PyPI release
runs-on: ubuntu-latest
needs: [build]
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags')
if: >-
github.event_name == 'push' &&
startsWith(github.ref, 'refs/tags') &&
vars.PACKAGE_IMPORT_NAME != ''
permissions:
id-token: write
steps:
Expand Down
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,8 @@ The format follows [Keep a Changelog](https://keepachangelog.com/en/1.1.0/).
### Changed

- Replace PyPI API tokens with trusted publishing and update GitHub Actions to
supported versions ([#261], [#262]).
supported versions, while skipping publication until a real package is
configured ([#261], [#262]).
- Expand Ruff and ty checks, streamline pre-commit hooks, and improve the
default pytest configuration ([#263], [#264], [#265], [#266]).
- Document the required checks and approvals for post-merge GitHub releases
Expand Down
Loading