Skip to content

Merge pull request #1537 from BCSDLab/feature/#1496-profile-logging #57

Merge pull request #1537 from BCSDLab/feature/#1496-profile-logging

Merge pull request #1537 from BCSDLab/feature/#1496-profile-logging #57

Workflow file for this run

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