From 0e72287c6bacf6719f5318d1364010ae8d9f3160 Mon Sep 17 00:00:00 2001 From: daniel-hbn Date: Fri, 3 Oct 2025 13:10:56 +0200 Subject: [PATCH] Cache aktiviert --- .gitea/workflows/development-build.yaml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.gitea/workflows/development-build.yaml b/.gitea/workflows/development-build.yaml index c369463..b3e7bac 100644 --- a/.gitea/workflows/development-build.yaml +++ b/.gitea/workflows/development-build.yaml @@ -10,11 +10,12 @@ env: DOCKER_IMAGE_NAME: 'watcher-server' REGISTRY_URL: 'git.triggermeelmo.com/watcher' DOCKER_PLATFORMS: 'linux/amd64,linux/arm64' - RUNNER_TOOL_CACHE: /toolcache # Runner Tool Cache jobs: build-and-test: runs-on: ubuntu-latest + env: + RUNNER_TOOL_CACHE: /toolcache # Runner Tool Cache steps: - name: Checkout code uses: actions/checkout@v3 @@ -39,6 +40,8 @@ jobs: docker-build-and-push: runs-on: ubuntu-latest + env: + RUNNER_TOOL_CACHE: /toolcache # Runner Tool Cache needs: build-and-test steps: - name: Checkout code