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:
2
.github/workflows/CreateRelease.yml
vendored
2
.github/workflows/CreateRelease.yml
vendored
@@ -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
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user