Skip to content

Commit cfd5f87

Browse files
committed
Fix condition in changes and build condition
1 parent 4e58b0d commit cfd5f87

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.github/workflows/release.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,10 +75,11 @@ jobs:
7575
draft: false
7676

7777
- name: Find changes since the last release
78-
uses: dorny/paths-filter@v2
78+
uses: dorny/paths-filter@v3.0.2
7979
id: filter
8080
with:
8181
base: ${{ steps.last_release.outputs.tag_name }}
82+
predicate-quantifier: 'every'
8283
filters: |
8384
js:
8485
- 'js/src/**'
@@ -205,7 +206,7 @@ jobs:
205206
if: always() &&
206207
!contains(needs.*.result, 'failure') &&
207208
!contains(needs.*.result, 'cancelled') &&
208-
needs.changes.outputs.template == 'true' || needs.changes.outputs.charts == 'true'
209+
(needs.changes.outputs.template == 'true' || needs.changes.outputs.charts == 'true')
209210
steps:
210211
- name: Checkout repository
211212
uses: actions/checkout@v3

0 commit comments

Comments
 (0)