Skip to content

Commit

Permalink
Avoid useless chaining
Browse files Browse the repository at this point in the history
  • Loading branch information
masesdevelopers committed Dec 12, 2024
1 parent a8065e3 commit d1fec67
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ jobs:
${{ github.workspace }}/tests/native/CreateVM.out
build_container_jnet:
needs: [check_changes, build_macos_native]
needs: check_changes
if: "always() && needs.check_changes.outputs.run_build_windows == 'true'"
runs-on: ubuntu-latest
permissions:
Expand Down Expand Up @@ -183,7 +183,7 @@ jobs:

# Now run "build_windows"
build_windows:
needs: [check_changes, build_macos_native]
needs: check_changes
if: "always() && needs.check_changes.outputs.run_build_windows == 'true'"
# The type of runner that the job will run on
runs-on: windows-2022
Expand Down

0 comments on commit d1fec67

Please sign in to comment.