diff --git a/.github/workflows/CreateRelease.yml b/.github/workflows/CreateRelease.yml index 2af9662..4280848 100644 --- a/.github/workflows/CreateRelease.yml +++ b/.github/workflows/CreateRelease.yml @@ -76,9 +76,9 @@ jobs: id: create_temp_branch run: | git checkout --orphan temp_branch - git rm -rf . - git reset -- README.md package.json LICENSE dist/** - git add README.md package.json LICENSE dist/** + git reset + rm -f .gitignore + git add README.md package.json LICENSE dist/ git commit -m "Prepare files for release ${{ env.VERSION }}" shell: bash