Skip to content

Commit

Permalink
chore: update workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
equinusocio committed Jan 19, 2024
1 parent 15b270b commit 548d4bb
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,7 @@ jobs:

- name: Get npm cache directory
id: npm-cache-dir
run: |
echo "::set-output name=dir::$(npm config get cache)"
run: echo "dir=$(npm config get cache)" >> $GITHUB_OUTPUT

- uses: actions/cache@v3
id: npm-cache # use this to check for `cache-hit` ==> if: steps.npm-cache.outputs.cache-hit != 'true'
Expand All @@ -37,7 +36,7 @@ jobs:
- name: Install Dependencies
run: npm ci
if: steps.cache-npm-cache.outputs.cache-hit != 'true' || steps.cache-node-modules.outputs.cache-hit != 'true'
if: steps.npm-cache.outputs.cache-hit != 'true' || steps.npm-cache-dir.outputs.cache-hit != 'true'

- name: Build extension
run: npm run build
Expand Down

0 comments on commit 548d4bb

Please sign in to comment.