Skip to content

Commit

Permalink
chore: final release lol
Browse files Browse the repository at this point in the history
  • Loading branch information
fmvilas committed Oct 28, 2024
1 parent a5de961 commit 87e333f
Showing 1 changed file with 18 additions and 1 deletion.
19 changes: 18 additions & 1 deletion .github/workflows/release-with-changesets.yml
Original file line number Diff line number Diff line change
Expand Up @@ -80,10 +80,27 @@ jobs:
uses: actions/setup-node@v4
with:
node-version: "16.0.0"
- if: steps.packagejson.outputs.exists == 'true'
uses: pnpm/action-setup@v3
with:
run_install: false
- if: steps.packagejson.outputs.exists == 'true'
name: Get pnpm store directory
shell: bash
run: |
echo "STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_ENV
- if: steps.packagejson.outputs.exists == 'true'
uses: actions/cache@v4
name: Setup pnpm cache
with:
path: ${{ env.STORE_PATH }}
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
restore-keys: |
${{ runner.os }}-pnpm-store-
- if: steps.packagejson.outputs.exists == 'true'
name: Install dependencies
shell: bash
run: npm install
run: pnpm install --frozen-lockfile
- if: steps.packagejson.outputs.exists == 'true'
name: Build dependency
shell: bash
Expand Down

0 comments on commit 87e333f

Please sign in to comment.