Skip to content

Commit ab72541

Browse files
committed
Set encryption key for configuration cache
1 parent 856915d commit ab72541

File tree

3 files changed

+5
-0
lines changed

3 files changed

+5
-0
lines changed

.github/workflows/deploy.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,8 @@ jobs:
7878
distribution: 'temurin'
7979
- name: Set up Gradle
8080
uses: gradle/actions/setup-gradle@v4
81+
with:
82+
cache-encryption-key: ${{ secrets.GRADLE_ENCRYPTION_KEY }}
8183
- name: Build frameworks
8284
run: "./gradlew PowerSyncKotlin:buildRelease"
8385

.github/workflows/docs-deploy.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ jobs:
3030
- name: Build Docs
3131
run: |
3232
./gradlew \
33+
--no-configuration-cache \
3334
-PGITHUB_PUBLISH_TOKEN=${{ secrets.GITHUB_TOKEN }} \
3435
dokkaGenerate
3536
shell: bash

.github/workflows/test.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,8 @@ jobs:
3838
distribution: 'temurin'
3939
- name: Set up Gradle
4040
uses: gradle/actions/setup-gradle@v4
41+
with:
42+
cache-encryption-key: ${{ secrets.GRADLE_ENCRYPTION_KEY }}
4143

4244
- name: Build and run tests with Gradle
4345
run: |

0 commit comments

Comments
 (0)