diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index b531bfa..23139d7 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -3,7 +3,7 @@ name: Build Kibana app & release on: push: tags: - - 'v* + - 'v*' jobs: build: @@ -29,7 +29,7 @@ jobs: with: # npm cache files are stored in `~/.npm` on Linux/macOS path: ./kibana/node_modules - key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles("./kibana/yarn.lock") }} + key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('./kibana/yarn.lock') }} restore-keys: | ${{ runner.os }}-build-${{ env.cache-name }}- ${{ runner.os }}-build-