From bcb06a3c193a0b126e3e81828d1470f3d9c6bc90 Mon Sep 17 00:00:00 2001 From: Dmitri Date: Thu, 10 Oct 2024 00:21:33 +0300 Subject: [PATCH] Echo json --- .github/workflows/deploy.yml | 2 ++ .github/workflows/run-tests.yml | 6 +++++- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 4ba9c07..ec91a67 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -38,4 +38,6 @@ jobs: remove-artifacts: uses: ./.github/workflows/clean-up-artifacts.yml needs: deploy-to-production-track + # Run this job even if "needs" job is failed + if: ${{ always() && contains(needs.*.result, 'failure') }} secrets: inherit diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml index 83d4cf1..58783e7 100644 --- a/.github/workflows/run-tests.yml +++ b/.github/workflows/run-tests.yml @@ -41,12 +41,16 @@ jobs: - name: Grant execute permission for gradlew run: chmod +x ./gradlew - - name: Download Google Service JSON for GitHub artifacts + - name: Download Google Service JSON from GitHub artifacts uses: actions/download-artifact@v4 with: name: google_service_json path: ./app + - name: Echo file + run: | + cat ./app/google-services.json + - name: Update dependencies run: ./gradlew dependencies