* In .github/workflows/release.yml

- in create-release job condition
    - add comments about use of always
This commit is contained in:
cliffhall
2025-09-18 15:58:01 -04:00
parent 20430df0de
commit 888184493c

View File

@@ -194,6 +194,8 @@ jobs:
create-release:
needs: [update-packages, create-metadata, publish-pypi, publish-npm]
if: |
# Always evaluate this condition, even if a dependency failed
# Create a release if changes were made and at least one publish succeeded
always() &&
needs.update-packages.outputs.changes_made == 'true' &&
(needs.publish-pypi.result == 'success' || needs.publish-npm.result == 'success')