mirror of
https://github.com/fromchat-messenger/app.git
synced 2026-09-22 19:15:05 +03:00
15f88c7349
Cache project .gradle/ and root build/ (execution history + outputs), restore git mtimes after checkout, skip set-version when unchanged, and bump cache keys to v2 with build-jar restore fallback. Co-authored-by: Cursor <cursoragent@cursor.com>
24 lines
563 B
YAML
24 lines
563 B
YAML
name: Save Gradle build directories
|
|
description: Save project .gradle/, build/ trees after a Gradle build
|
|
|
|
inputs:
|
|
primary-key:
|
|
description: cache-primary-key from cache-gradle-build restore step
|
|
required: true
|
|
|
|
runs:
|
|
using: composite
|
|
steps:
|
|
- uses: actions/cache/save@v5
|
|
continue-on-error: true
|
|
with:
|
|
key: ${{ inputs.primary-key }}
|
|
path: |
|
|
.gradle
|
|
build
|
|
app/desktop/build
|
|
app/shared/build
|
|
app/android/build
|
|
utils/shared/build
|
|
utils/android/build
|