Skip to content

Commit

Permalink
Fix more input variable names
Browse files Browse the repository at this point in the history
  • Loading branch information
oxve committed Dec 29, 2024
1 parent eeb310f commit d552346
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/actions/build/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ runs:
gn args --list --short --overrides-only out/${{ matrix.platform }}_${{ matrix.config }}
shell: bash
- name: Calculate test targets
if: inputs.upload_on_host_test_artifacts == 'true' || inputs.upload_on_device == 'true_test_artifacts'
if: inputs.upload_on_host_test_artifacts == 'true' || inputs.upload_on_device_test_artifacts == 'true'
run: |
set -x
cd src
Expand All @@ -57,7 +57,7 @@ runs:
echo "TEST_TARGETS=${TEST_TARGETS}" >> $GITHUB_ENV
shell: bash
- name: Ninja build test targets
if: inputs.upload_on_host_test_artifacts == 'true' || inputs.upload_on_device == 'true_test_artifacts'
if: inputs.upload_on_host_test_artifacts == 'true' || inputs.upload_on_device_test_artifacts == 'true'
run: |
set -x
cd src
Expand All @@ -84,7 +84,7 @@ runs:
src/out/${{ matrix.platform }}_qa/*_apk/*.apk
src/out/${{ matrix.platform }}_qa/gen/build_info.json
- name: Upload Test Artifacts
if: inputs.upload_on_host_test_artifacts == 'true' || inputs.upload_on_device == 'true_test_artifacts'
if: inputs.upload_on_host_test_artifacts == 'true' || inputs.upload_on_device_test_artifacts == 'true'
uses: ./src/.github/actions/upload_test_artifacts
with:
test_artifacts_key: ${{ inputs.test_artifacts_key }}
Expand Down

0 comments on commit d552346

Please sign in to comment.