Skip to content

Commit

Permalink
Fix conditions
Browse files Browse the repository at this point in the history
  • Loading branch information
violet-dev committed Sep 8, 2024
1 parent 87495f4 commit 65438a1
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/violet-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ jobs:
- "violet/**"
app-format:
needs: changes
if: ${{ needs.changes.outputs.src == 'true' }}
needs: app-changes
if: ${{ needs.app-changes.outputs.src == 'true' }}
runs-on: ubuntu-latest
defaults:
run:
Expand Down Expand Up @@ -62,8 +62,8 @@ jobs:

app-ios-build:
runs-on: macos-latest
needs: [format, changes]
if: ${{ needs.changes.outputs.src == 'true' }}
needs: [app-format, app-changes]
if: ${{ needs.app-changes.outputs.src == 'true' }}
defaults:
run:
working-directory: violet
Expand Down Expand Up @@ -117,8 +117,8 @@ jobs:

app-android-build:
runs-on: ubuntu-latest
needs: [format, changes]
if: ${{ needs.changes.outputs.src == 'true' }}
needs: [app-format, app-changes]
if: ${{ needs.app-changes.outputs.src == 'true' }}
defaults:
run:
working-directory: violet
Expand Down

0 comments on commit 65438a1

Please sign in to comment.