From 7d03d81705eda8e3e1ce11e9a3df1740f93a8594 Mon Sep 17 00:00:00 2001 From: penguin Date: Fri, 12 Dec 2025 22:56:25 -0600 Subject: [PATCH] ci: cache .git dir in build-oci-image --- .gitea/workflows/gentoo-utils.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.gitea/workflows/gentoo-utils.yml b/.gitea/workflows/gentoo-utils.yml index 9e9cf6f..cbfd10f 100644 --- a/.gitea/workflows/gentoo-utils.yml +++ b/.gitea/workflows/gentoo-utils.yml @@ -11,6 +11,12 @@ jobs: runs-on: ubuntu-latest continue-on-error: true steps: + - name: Restore git cache + uses: actions/cache@v4 + with: + path: .git + key: gitea-repo-${{ gitea.repository }}-${{ gitea.ref }} + - name: Checkout repo uses: actions/checkout@v5 with: