Skip to content

Commit 4fd7c0f

Browse files
committed
chore: Fix Conditional Steps not executed
1 parent 7dc5c61 commit 4fd7c0f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/actions/run-tests/action.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ runs:
2525
shell: bash
2626

2727
- name: Upload Test Reports
28-
if: ${{ inputs.upload-test-reports == 'true' }}
28+
if: ${{ inputs['upload-test-reports'] == 'true' }}
2929
uses: actions/upload-artifact@v4
3030
with:
3131
name: test-reports
@@ -34,12 +34,12 @@ runs:
3434
retention-days: 14
3535

3636
- name: Create Code Coverage Reports
37-
if: ${{ inputs.upload-code-coverage-reports == 'true' }}
37+
if: ${{ inputs['upload-code-coverage-reports'] == 'true' }}
3838
run: ./gradlew jacocoRootReport
3939
shell: bash
4040

4141
- name: Upload Code Coverage Report
42-
if: ${{ inputs.upload-code-coverage-reports == 'true' }}
42+
if: ${{ inputs['upload-code-coverage-reports'] == 'true' }}
4343
uses: actions/upload-artifact@v4
4444
with:
4545
name: code-coverage

0 commit comments

Comments
 (0)