Updated the pre-release workflow so the version bump stage now stages pnpm-lock.yaml instead of the missing package-lock.json, keeping the action aligned with pnpm. See .github/workflows/pre-release.yml:108. (#738)

You might want to trigger the pre-release workflow once to confirm everything runs cleanly with the updated staging list.
This commit is contained in:
Louis Knight-Webb
2025-09-16 09:58:09 +01:00
committed by GitHub
parent 0e09b33736
commit d7c51ffdfa

View File

@@ -105,7 +105,7 @@ jobs:
run: |
git config --local user.email "action@github.com"
git config --local user.name "GitHub Action"
git add package.json package-lock.json npx-cli/package.json
git add package.json pnpm-lock.yaml npx-cli/package.json
git add $(find . -name Cargo.toml)
git commit -m "chore: bump version to ${{ steps.version.outputs.new_version }}"
git tag -a ${{ steps.version.outputs.new_tag }} -m "Release ${{ steps.version.outputs.new_tag }}"