Skip to content

Commit 7061c36

Browse files
committed
* 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
1 parent 9a65da3 commit 7061c36

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -196,7 +196,7 @@ jobs:
196196
if: |
197197
needs.update-packages.outputs.changes_made == 'true' &&
198198
(always() &&
199-
(needs.publish-pypi.result == 'success' || needs.publish-pypi.result == 'skipped') &&
199+
(needs.publish-pypi.result == 'success' || needs.publish-npm.result == 'skipped') &&
200200
(needs.publish-pypi.result == 'skipped' || needs.publish-npm.result == 'success') &&
201201
(needs.publish-pypi.result == 'success' || needs.publish-npm.result == 'success'))
202202
runs-on: ubuntu-latest

0 commit comments

Comments
 (0)