From f310df9647bdab0f2d839b81216711b7e733482a Mon Sep 17 00:00:00 2001 From: Sarah Vaupel Date: Fri, 7 Feb 2025 21:37:52 +0100 Subject: [PATCH] ci(azure-pipelines): fix cache param reference --- .azure-pipelines/templates/steps/cache.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.azure-pipelines/templates/steps/cache.yaml b/.azure-pipelines/templates/steps/cache.yaml index a86689357..56758e9a7 100644 --- a/.azure-pipelines/templates/steps/cache.yaml +++ b/.azure-pipelines/templates/steps/cache.yaml @@ -14,5 +14,5 @@ steps: - task: Cache@2 displayName: Restore ${{parameters.cacheIdent}} cache inputs: - key: '"${{parameters.cacheIdent}}" | ${{cacheKeys}}' - path: '${{cachePath}}' \ No newline at end of file + key: '"${{parameters.cacheIdent}}" | ${{parameters.cacheKeys}}' + path: '${{parameters.cachePath}}' \ No newline at end of file