From ccf24b511f7183c8a6e0dd662b093fd8a03d3e96 Mon Sep 17 00:00:00 2001 From: Max P Date: Fri, 16 Aug 2024 18:01:15 +0200 Subject: [PATCH] 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. --- .github/workflows/CreateRelease.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/CreateRelease.yml b/.github/workflows/CreateRelease.yml index 94f295d..db62f27 100644 --- a/.github/workflows/CreateRelease.yml +++ b/.github/workflows/CreateRelease.yml @@ -94,6 +94,8 @@ jobs: id: create_temp_branch if: steps.check_version.outputs.skip_release == 'false' run: | + rm -rf .gitignore + # Add new/modified files git add README.md package.json LICENSE dist/ src/ tsconfig.json