13
0
Fork 0
mirror of https://github.com/dorny/paths-filter.git synced 2026-07-01 13:19:32 +00:00

Fix multiple jobs workflow example (#25)

This commit is contained in:
Daksh Shah 2020-07-16 16:03:30 +05:30 committed by GitHub
parent 83deb9f037
commit e1ae9889cb
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -106,10 +106,12 @@ jobs:
# Filters stored in own yaml file
filters: '.github/filters.yml'
backend:
needs: changes
if: ${{ needs.changes.outputs.backend == 'true' }}
steps:
- ...
frontend:
needs: changes
if: ${{ needs.changes.outputs.frontend == 'true' }}
steps:
- ...