From d7a761f2361c22c90b619e5b7fdb4e5b0ac59066 Mon Sep 17 00:00:00 2001 From: Marco Carrozzo Date: Wed, 18 Jan 2023 15:05:59 +0100 Subject: [PATCH] removed .npm from cache --- .github/actions/setup/action.yml | 6 ++---- .github/workflows/devel.yml | 11 ++++++----- 2 files changed, 8 insertions(+), 9 deletions(-) diff --git a/.github/actions/setup/action.yml b/.github/actions/setup/action.yml index 9d2f4b8d0f..fda74ba2bd 100644 --- a/.github/actions/setup/action.yml +++ b/.github/actions/setup/action.yml @@ -43,16 +43,14 @@ runs: nxcache-${{ runner.os }}-build- nxcache-${{ runner.os }}- - name: Node Modules cache - id: node-modules-dist-cache + id: node-modules-cache if: ${{ inputs.enable-node-modules-cache == 'true' }} uses: actions/cache@v3 env: - cache-name: node-modules-dist-cache + cache-name: node-modules-cache with: path: | node_modules - ~/.npm - dist key: .npm-${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/package-lock.json') }}-${{ steps.tag-sha.outputs.tag_sha }} restore-keys: | node_modules-${{ runner.os }}-build-${{ env.cache-name }}- diff --git a/.github/workflows/devel.yml b/.github/workflows/devel.yml index 0526d89729..d9ed9fca4b 100644 --- a/.github/workflows/devel.yml +++ b/.github/workflows/devel.yml @@ -60,9 +60,10 @@ jobs: with: dry-run-release: true skip-pr-approve: true - # release: - # uses: ./.github/workflows/release.yml - # secrets: inherit - # with: - # dry-run-release: true + + release: + uses: ./.github/workflows/release.yml + secrets: inherit + with: + dry-run-release: true