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>
13 lines
380 B
YAML
13 lines
380 B
YAML
name: Restore git mtimes
|
|
description: Reset tracked file timestamps from git so Gradle incremental builds can be UP-TO-DATE after checkout
|
|
|
|
runs:
|
|
using: composite
|
|
steps:
|
|
- name: Restore mtimes
|
|
shell: bash
|
|
run: |
|
|
set -euo pipefail
|
|
python3 -m pip install --disable-pip-version-check --quiet git-restore-mtime
|
|
python3 -m git_restore_mtime
|