Skip to content

Commit 9a5047b

Browse files
alacukupoiana
authored andcommitted
fix(ci): fix paths filters
Signed-off-by: Aldo Lacuku <aldo@lacuku.eu>
1 parent 9e6dca8 commit 9a5047b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/ci.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
paths-filter:
2323
runs-on: ubuntu-latest
2424
outputs:
25-
docker_needs_build: ${{ steps.filter.outputs.docker == 'true' }}
25+
docker_needs_build: ${{ steps.filter.outputs.docker }}
2626
steps:
2727
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
2828
- uses: dorny/paths-filter@4512585405083f25c027a35db413c2b3b9006d50 # v2.11.1
@@ -34,7 +34,7 @@ jobs:
3434
3535
build-images-dev:
3636
needs: [build-test-dev,paths-filter]
37-
if: needs.paths-filter.outputs.docker_needs_build
37+
if: needs.paths-filter.outputs.docker_needs_build == 'true'
3838
strategy:
3939
matrix:
4040
arch: [ amd64, arm64 ]

0 commit comments

Comments
 (0)