From 124d1e2f1e6725f210d8e5f3b2b6815547b2555c Mon Sep 17 00:00:00 2001 From: Sk Niyaj Ali Date: Sun, 25 Aug 2024 20:17:14 +0530 Subject: [PATCH] Fix - [:ci] Fixed id of run_check job --- .github/workflows/master_dev_ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/master_dev_ci.yml b/.github/workflows/master_dev_ci.yml index 9d1753782..d9ea2025a 100644 --- a/.github/workflows/master_dev_ci.yml +++ b/.github/workflows/master_dev_ci.yml @@ -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 @@ -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