Skip to content

Commit

Permalink
Update action.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
alexv-smirnov authored Mar 14, 2024
1 parent 9ed4508 commit da29a73
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/actions/build_and_test_ya/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ runs:

- name: Build
uses: ./.github/actions/build_ya
if: ${{ inputs.run_build }}
if: ${{ inputs.run_build == 'true' }}
with:
build_target: ${{ inputs.build_target }}
build_preset: ${{ inputs.build_preset }}
Expand All @@ -93,7 +93,7 @@ runs:

- name: Run tests
uses: ./.github/actions/test_ya
if: ${{ inputs.run_tests }}
if: ${{ inputs.run_tests == 'true' }}
with:
build_target: ${{ inputs.build_target }}
build_preset: ${{ inputs.build_preset }}
Expand Down

0 comments on commit da29a73

Please sign in to comment.