From 7b67284ddb599eddf2cd042fe89552f43ebb754f Mon Sep 17 00:00:00 2001 From: "Trez.One" Date: Fri, 3 Jan 2025 10:33:51 -0500 Subject: [PATCH] Forgot to add ID for cache step and adjusting the cache key. --- .gitea/workflows/deployment.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.gitea/workflows/deployment.yml b/.gitea/workflows/deployment.yml index ca5d36bd..92a26483 100644 --- a/.gitea/workflows/deployment.yml +++ b/.gitea/workflows/deployment.yml @@ -41,11 +41,11 @@ jobs: uses: actions/checkout@v4 - name: Cache flarectl and Go dependencies + id: cache-flarectl uses: actions/cache@v4 with: - path: | - ~/go/pkg/mod - key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }} + path: ~/go/pkg/mod + key: ${{ runner.os }}-${{ hashFiles('**/go.sum') }} - name: Setup yq uses: dcarbone/install-yq-action@v1