* In .github/workflows/release.yml

- in create-release job condition
    - check for all combinations of publish results that should lead to a release creation
      - npm = success / pypi = skipped
      - npm = skipped / pypi = success
      - npm = success / pypi = success
This commit is contained in:
cliffhall
2025-09-17 13:27:44 -04:00
parent 9a65da3e78
commit 7061c367c5

View File

@@ -196,7 +196,7 @@ jobs:
if: |
needs.update-packages.outputs.changes_made == 'true' &&
(always() &&
(needs.publish-pypi.result == 'success' || needs.publish-pypi.result == 'skipped') &&
(needs.publish-pypi.result == 'success' || needs.publish-npm.result == 'skipped') &&
(needs.publish-pypi.result == 'skipped' || needs.publish-npm.result == 'success') &&
(needs.publish-pypi.result == 'success' || needs.publish-npm.result == 'success'))
runs-on: ubuntu-latest