diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 4143331f5..e4b1c9623 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -40,7 +40,7 @@ jobs: run: bundle exec fastlane lint - name: Archive lint reports uses: actions/upload-artifact@v3 + if: ${{ always() }} with: name: lint-reports - if: always() path: app/build/reports/*.html diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index fbcd7d362..398afb608 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -37,7 +37,7 @@ jobs: script: ./gradlew -Pcoverage app:testGoogleplayDebugUnitTest app:connectedGoogleplayDebugAndroidTest - name: Upload test reports uses: actions/upload-artifact@v3 + if: ${{ always() }} with: name: test-reports - if: always() path: app/build/reports/**