Skip to content

Commit

Permalink
Rename filters
Browse files Browse the repository at this point in the history
  • Loading branch information
matejsemancik committed Nov 24, 2023
1 parent 82d5f55 commit b89ada9
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/android_pull_request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ jobs:
runs-on: ubuntu-latest
outputs:
# Matches all files which can affect iOS build, when changed
iosFiles: ${{ steps.file-changes.outputs.notAndroid }}
iosFiles: ${{ steps.file-changes.outputs.iosFiles }}
# Matches all files which can affect Android build, when changed
androidFiles: ${{ steps.file-changes.outputs.notIos }}
androidFiles: ${{ steps.file-changes.outputs.androidFiles }}
steps:
- name: Checkout
uses: actions/checkout@v4
Expand All @@ -23,9 +23,9 @@ jobs:
id: file-changes
with:
filters: |
notAndroid:
iosFiles:
- "!(androidApp/**)"
notIos:
androidFiles:
- "!(iosApp/**)"
pr-check:
name: Android PR check
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/ios_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ jobs:
runs-on: ubuntu-latest
outputs:
# Matches all files which can affect iOS build, when changed
iosFiles: ${{ steps.file-changes.outputs.notAndroid }}
iosFiles: ${{ steps.file-changes.outputs.iosFiles }}
# Matches all files which can affect Android build, when changed
androidFiles: ${{ steps.file-changes.outputs.notIos }}
androidFiles: ${{ steps.file-changes.outputs.androidFiles }}
steps:
- name: Checkout
uses: actions/checkout@v4
Expand All @@ -23,9 +23,9 @@ jobs:
id: file-changes
with:
filters: |
notAndroid:
iosFiles:
- "!(androidApp/**)"
notIos:
androidFiles:
- "!(iosApp/**)"
test:
name: iOS Test
Expand Down

0 comments on commit b89ada9

Please sign in to comment.