From 58fb761936784fa3b166d9d8026fb9a814b5794b Mon Sep 17 00:00:00 2001 From: akira ueno Date: Sat, 20 Dec 2025 02:03:29 +0900 Subject: [PATCH] ci: optimize build with nimble cache and nimble command --- .github/workflows/release.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index cf949a8..ea92ec6 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -37,6 +37,14 @@ jobs: steps: - uses: actions/checkout@v6 + - name: Cache Nimble dependencies + uses: actions/cache@v4 + with: + path: ~/.nimble + key: ${{ runner.os }}-nimble-${{ hashFiles('nimble.lock') }} + restore-keys: | + ${{ runner.os }}-nimble- + - name: Install Nim uses: jiro4989/setup-nim-action@v2 with: