Merge pull request #1537 from BCSDLab/feature/#1496-profile-logging #57
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Gradle Cache Seed | |
| on: | |
| push: | |
| branches: [develop] | |
| concurrency: | |
| group: gradle-cache-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| seed-cache: | |
| name: Seed Gradle Cache | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: ./.github/actions/gradle-setup | |
| with: | |
| properties: ${{ secrets.PROPERTIES }} | |
| gradle-encryption-key: ${{ secrets.GRADLE_ENCRYPTION_KEY }} | |
| - name: Update Firebase | |
| env: | |
| FIREBASE: ${{ secrets.FIREBASE }} | |
| FIREBASE_STAGE: ${{ secrets.FIREBASE_STAGE }} | |
| run: | | |
| mkdir -p ./koin/src/debug | |
| echo $FIREBASE | base64 -di > ./koin/google-services.json | |
| echo $FIREBASE_STAGE | base64 -di > ./koin/src/debug/google-services.json | |
| - name: Warm Gradle cache | |
| continue-on-error: true | |
| run: ./gradlew build koverXmlReport |