Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: final final release #855

Merged
merged 1 commit into from
Oct 28, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 1 addition & 14 deletions .github/workflows/release-with-changesets.yml
Original file line number Diff line number Diff line change
Expand Up @@ -84,27 +84,14 @@ jobs:
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: pnpm install --frozen-lockfile
- if: steps.packagejson.outputs.exists == 'true'
name: Build dependency
shell: bash
run: npm run build
run: pnpm run build
- if: steps.packagejson.outputs.exists == 'true'
name: Install changelog
shell: bash
Expand Down
Loading