Skip to content

Commit

Permalink
fix(release): Workflow updated
Browse files Browse the repository at this point in the history
  • Loading branch information
Ludovic Lerus committed May 26, 2024
1 parent bf3f49e commit 74f9190
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
11 changes: 6 additions & 5 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,14 +48,15 @@ jobs:

- name: Get pnpm store directory
id: get-pnpm-cache-dir
shell: bash
run: |
echo "::set-output name=pnpm_cache_dir::$(pnpm store path)"
echo "STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_ENV

- name: Cache pnpm modules
uses: actions/cache@v4
id: pnpm-cache
- uses: actions/cache@v4
id: pnpm-cache
name: Setup pnpm cache
with:
path: ${{ steps.get-pnpm-cache-dir.outputs.pnpm_cache_dir }}
path: ${{ env.STORE_PATH }}
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
restore-keys: |
${{ runner.os }}-pnpm-store-
Expand Down
1 change: 0 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@
"dev:blandui": "pnpm --filter blandui dev",
"dev:blandui-react": "pnpm --filter blandui-react dev",
"start:storybook-react": "pnpm --filter storybook-react start",
"prepare": "pnpm run build",
"changeset": "changeset",
"release": "changeset publish"
},
Expand Down

0 comments on commit 74f9190

Please sign in to comment.