diff --git a/.github/workflows/deploy-production.yml b/.github/workflows/deploy-production.yml index b7e2af6207..9da1223121 100644 --- a/.github/workflows/deploy-production.yml +++ b/.github/workflows/deploy-production.yml @@ -50,7 +50,7 @@ jobs: id: gatsby-cache-folder with: path: .cache - key: ${{ runner.os }}-cache-gatsby-${{ github.refname }} + key: ${{ runner.os }}-cache-gatsby-${{ github.ref_name }} restore-keys: | ${{ runner.os }}-cache-gatsby-main @@ -59,7 +59,7 @@ jobs: id: gatsby-public-folder with: path: public/ - key: ${{ runner.os }}-public-gatsby-${{ github.refname }} + key: ${{ runner.os }}-public-gatsby-${{ github.ref_name }} restore-keys: | ${{ runner.os }}-public-gatsby-main diff --git a/.github/workflows/deploy-staging.yml b/.github/workflows/deploy-staging.yml index d05741970d..e6c5b6efeb 100644 --- a/.github/workflows/deploy-staging.yml +++ b/.github/workflows/deploy-staging.yml @@ -49,7 +49,7 @@ jobs: id: gatsby-cache-folder with: path: .cache - key: ${{ runner.os }}-cache-gatsby-${{ github.refname }} + key: ${{ runner.os }}-cache-gatsby-${{ github.ref_name }} restore-keys: | ${{ runner.os }}-cache-gatsby-main @@ -58,7 +58,7 @@ jobs: id: gatsby-public-folder with: path: public/ - key: ${{ runner.os }}-public-gatsby-${{ github.refname }} + key: ${{ runner.os }}-public-gatsby-${{ github.ref_name }} restore-keys: | ${{ runner.os }}-public-gatsby-main diff --git a/.github/workflows/preview.yml b/.github/workflows/preview.yml index 9d1175c96b..c40f7c85fe 100644 --- a/.github/workflows/preview.yml +++ b/.github/workflows/preview.yml @@ -69,7 +69,7 @@ jobs: id: gatsby-cache-folder with: path: .cache - key: ${{ runner.os }}-cache-gatsby-${{ github.refname }} + key: ${{ runner.os }}-cache-gatsby-${{ github.ref_name }} restore-keys: | ${{ runner.os }}-cache-gatsby-main @@ -78,7 +78,7 @@ jobs: id: gatsby-public-folder with: path: public/ - key: ${{ runner.os }}-public-gatsby-${{ github.refname }} + key: ${{ runner.os }}-public-gatsby-${{ github.ref_name }} restore-keys: | ${{ runner.os }}-public-gatsby-main