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:
- ...