From efb9d0ccd48446ddf66eb84bd45dedb36132e025 Mon Sep 17 00:00:00 2001 From: zomars Date: Fri, 24 Feb 2023 19:43:42 -0700 Subject: [PATCH] Fix env setter --- .github/actions/env-read-file/action.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/actions/env-read-file/action.yml b/.github/actions/env-read-file/action.yml index 33246a5c60..82f1757e8f 100644 --- a/.github/actions/env-read-file/action.yml +++ b/.github/actions/env-read-file/action.yml @@ -7,9 +7,9 @@ runs: - name: Cache production build uses: actions/cache@v3 id: env-cache - env: - cache-name: env-cache - key-1: ${{ hashFiles('.github/.env') }} + with: + path: .github/.env + key: env-cache-${{ hashFiles('.github/.env') }} - name: Set Environment Variables if: steps.env-cache.outputs.cache-hit == 'true' uses: tw3lveparsecs/github-actions-setvars@latest