From 3f391ff5847795cdad24259527d048d47f870411 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Kr=C3=BCger?= Date: Sun, 16 Aug 2026 14:13:46 +0200 Subject: [PATCH] Drop pnpm cache from the release workflow - not reachable on this runner actions/setup-node's cache: pnpm option tries to hit this Gitea instance's Actions cache service, which times out (ETIMEDOUT against an internal address) rather than failing fast - burning ~5 minutes on every run before falling back to an uncached install anyway. Not worth it for a release workflow that runs once per tag. Co-Authored-By: Claude Sonnet 5 --- .gitea/workflows/release.yaml | 1 - 1 file changed, 1 deletion(-) diff --git a/.gitea/workflows/release.yaml b/.gitea/workflows/release.yaml index 8e9796f..60bdda5 100644 --- a/.gitea/workflows/release.yaml +++ b/.gitea/workflows/release.yaml @@ -18,7 +18,6 @@ jobs: - uses: https://github.com/actions/setup-node@v4 with: node-version: 22 - cache: pnpm registry-url: https://dev.pivoine.art/api/packages/valknar/npm/ - run: pnpm install --frozen-lockfile