Remove .gitignore before creating temp branch

Added step to delete .gitignore before staging new and modified files in the CreateRelease workflow. Ensures .gitignore does not interfere with the release processes and file staging operations.
This commit is contained in:
2024-08-16 18:01:15 +02:00
parent 372244d5c4
commit ccf24b511f

View File

@@ -94,6 +94,8 @@ 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
# 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