Skip to content

Commit

Permalink
Fix - [:ci] Fixed id of run_check job
Browse files Browse the repository at this point in the history
  • Loading branch information
niyajali committed Aug 25, 2024
1 parent 8ada2e8 commit 124d1e2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/master_dev_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ jobs:
distribution: 'zulu'
java-version: 17
- name: Run ${{ matrix.check }}
id: run_check_"${{ matrix.check }}"
id: run_check
run: |
if [ "${{ matrix.check }}" = "build_logic" ]; then
./gradlew check -p build-logic
Expand All @@ -54,7 +54,7 @@ jobs:
fi
- name: Upload Detekt Reports
if: ${{ matrix.check == 'detekt' && steps.run_check_detekt.outcome == 'success' }}
if: ${{ matrix.check == 'detekt' && steps.run_check.outcome == 'success' }}
uses: actions/upload-artifact@v4
with:
name: detekt-reports
Expand Down

0 comments on commit 124d1e2

Please sign in to comment.