Remove package-lock.json in release workflow

Updated the release workflow to also remove package-lock.json when creating a temporary branch. This ensures that any changes to dependencies are not carried over inadvertently during the release process.
This commit is contained in:
2024-08-16 18:02:49 +02:00
parent ccf24b511f
commit ec4dfb020b

View File

@@ -94,7 +94,7 @@ jobs:
id: create_temp_branch id: create_temp_branch
if: steps.check_version.outputs.skip_release == 'false' if: steps.check_version.outputs.skip_release == 'false'
run: | run: |
rm -rf .gitignore rm -rf .gitignore package-lock.json
# Add new/modified files # Add new/modified files
git add README.md package.json LICENSE dist/ src/ tsconfig.json git add README.md package.json LICENSE dist/ src/ tsconfig.json